Update of /cvsroot/gaim/gaim/plugins
In directory usw-pr-cvs1:/tmp/cvs-serv3503
Modified Files:
lagmeter.c
Log Message:
what the hell?
Index: lagmeter.c
===================================================================
RCS file: /cvsroot/gaim/gaim/plugins/lagmeter.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- lagmeter.c 2001/09/23 20:32:16 1.14
+++ lagmeter.c 2001/09/24 16:35:27 1.15
@@ -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
|