diff -r 413c376e3e41 -r 2c78987f497b src/protocols/zephyr/zephyr.c --- a/src/protocols/zephyr/zephyr.c Wed Apr 23 18:46:45 2003 +0000 +++ b/src/protocols/zephyr/zephyr.c Wed Apr 23 18:49:03 2003 +0000 @@ -945,6 +945,11 @@ } } +static const char *zephyr_list_icon(struct gaim_account *a, struct buddy *b) +{ + return "zephyr"; +} + static struct prpl *my_protocol = NULL; void zephyr_init(struct prpl *ret) @@ -952,6 +957,7 @@ ret->protocol = PROTO_ZEPHYR; ret->options = OPT_PROTO_NO_PASSWORD; ret->name = g_strdup("Zephyr"); + ret->list_icon = zephyr_list_icon; ret->login = zephyr_login; ret->close = zephyr_close; ret->add_buddy = zephyr_add_buddy;