diff -r 74191a8680af -r fc17a4351e63 libpurple/protocols/zephyr/zephyr.c --- a/libpurple/protocols/zephyr/zephyr.c Mon Aug 19 03:59:13 2013 +0530 +++ b/libpurple/protocols/zephyr/zephyr.c Mon Aug 19 04:02:20 2013 +0530 @@ -2368,21 +2368,21 @@ static GList *zephyr_chat_info(PurpleConnection * gc) { GList *m = NULL; - struct proto_chat_entry *pce; - - pce = g_new0(struct proto_chat_entry, 1); + PurpleProtocolChatEntry *pce; + + pce = g_new0(PurpleProtocolChatEntry, 1); pce->label = _("_Class:"); pce->identifier = "class"; m = g_list_append(m, pce); - pce = g_new0(struct proto_chat_entry, 1); + pce = g_new0(PurpleProtocolChatEntry, 1); pce->label = _("_Instance:"); pce->identifier = "instance"; m = g_list_append(m, pce); - pce = g_new0(struct proto_chat_entry, 1); + pce = g_new0(PurpleProtocolChatEntry, 1); pce->label = _("_Recipient:"); pce->identifier = "recipient";