diff -r deed98aa3181 -r 242b8aa81328 src/log.c --- a/src/log.c Thu Apr 24 03:52:25 2003 +0000 +++ b/src/log.c Fri Apr 25 06:47:33 2003 +0000 @@ -295,32 +295,32 @@ switch (what) { case log_signon: g_snprintf(text, sizeof(text), _("+++ %s (%s) signed on @ %s"), - gc->username, gc->prpl->name, full_date()); + gc->username, gc->prpl->info->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_signoff: g_snprintf(text, sizeof(text), _("+++ %s (%s) signed off @ %s"), - gc->username, gc->prpl->name, full_date()); + gc->username, gc->prpl->info->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_away: g_snprintf(text, sizeof(text), _("+++ %s (%s) changed away state @ %s"), - gc->username, gc->prpl->name, full_date()); + gc->username, gc->prpl->info->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_back: g_snprintf(text, sizeof(text), _("+++ %s (%s) came back @ %s"), - gc->username, gc->prpl->name, full_date()); + gc->username, gc->prpl->info->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_idle: g_snprintf(text, sizeof(text), _("+++ %s (%s) became idle @ %s"), - gc->username, gc->prpl->name, full_date()); + gc->username, gc->prpl->info->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_unidle: g_snprintf(text, sizeof(text), _("+++ %s (%s) returned from idle @ %s"), - gc->username, gc->prpl->name, full_date()); + gc->username, gc->prpl->info->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_quit: @@ -332,33 +332,33 @@ switch (what) { case log_signon: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) signed on @ %s"), - gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date()); + gc->username, gc->prpl->info->name, gaim_get_buddy_alias(who), who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_signoff: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) signed off @ %s"), - gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date()); + gc->username, gc->prpl->info->name, gaim_get_buddy_alias(who), who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_away: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) went away @ %s"), - gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date()); + gc->username, gc->prpl->info->name, gaim_get_buddy_alias(who), who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_back: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) came back @ %s"), - gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date()); + gc->username, gc->prpl->info->name, gaim_get_buddy_alias(who), who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_idle: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) became idle @ %s"), - gc->username, gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date()); + gc->username, gc->prpl->info->name, gaim_get_buddy_alias(who), who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_unidle: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s (%s) returned from idle @ %s"), gc->username, - gc->prpl->name, gaim_get_buddy_alias(who), who->name, full_date()); + gc->prpl->info->name, gaim_get_buddy_alias(who), who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; default: @@ -370,33 +370,33 @@ switch (what) { case log_signon: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s signed on @ %s"), - gc->username, gc->prpl->name, who->name, full_date()); + gc->username, gc->prpl->info->name, who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_signoff: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s signed off @ %s"), - gc->username, gc->prpl->name, who->name, full_date()); + gc->username, gc->prpl->info->name, who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_away: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s went away @ %s"), - gc->username, gc->prpl->name, who->name, full_date()); + gc->username, gc->prpl->info->name, who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_back: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s came back @ %s"), - gc->username, gc->prpl->name, who->name, full_date()); + gc->username, gc->prpl->info->name, who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_idle: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s became idle @ %s"), - gc->username, gc->prpl->name, who->name, full_date()); + gc->username, gc->prpl->info->name, who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; case log_unidle: g_snprintf(text, sizeof(text), _("%s (%s) reported that %s returned from idle @ %s"), gc->username, - gc->prpl->name, who->name, full_date()); + gc->prpl->info->name, who->name, full_date()); g_snprintf(html, sizeof(html), "%s", text); break; default: