# HG changeset patch # User Eric Warmenhoven # Date 1001349327 0 # Node ID abdf5f081b29796085c0c43099337654f5664e59 # Parent 39e66e80bb31d462b0703106200edb902798661f [gaim-migrate @ 2366] what the hell? committer: Tailor Script diff -r 39e66e80bb31 -r abdf5f081b29 plugins/lagmeter.c --- a/plugins/lagmeter.c Sun Sep 23 20:32:30 2001 +0000 +++ b/plugins/lagmeter.c Mon Sep 24 16:35:27 2001 +0000 @@ -87,11 +87,11 @@ char *m = g_strdup(MY_LAG_STRING); if (my_gc->protocol == PROTO_JABBER) { if (!strchr(my_gc->username, '@')) { - char buf = g_strconcat(my_gc->username, "@jabber.org/GAIM", NULL); + char *buf = g_strconcat(my_gc->username, "@jabber.org/GAIM", NULL); serv_send_im(my_gc, buf, m, 1); g_free(buf); } else if (!strchr(my_gc->username, '/')) { - char buf = g_strconcat(my_gc->username, "@jabber.org/GAIM", NULL); + char *buf = g_strconcat(my_gc->username, "@jabber.org/GAIM", NULL); serv_send_im(my_gc, buf, m, 1); g_free(buf); } else