Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv19585
Modified Files:
multi.c
Log Message:
small bug
Index: multi.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/multi.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- multi.c 2001/10/06 05:41:25 1.91
+++ multi.c 2001/10/09 18:12:41 1.92
@@ -612,6 +612,7 @@
mod_users = g_slist_append(mod_users, u);
if (a) {
+ int i;
u->options = a->options;
if (find_prpl(a->protocol))
u->protocol = a->protocol;
@@ -620,6 +621,9 @@
else
u->protocol = -1;
g_snprintf(u->iconfile, sizeof(u->iconfile), "%s", a->iconfile);
+ for (i = 0; i < 7; i++)
+ g_snprintf(u->proto_opt[i], sizeof(u->proto_opt[i]), "%s",
+ a->proto_opt[i]);
} else {
u->options = OPT_USR_REM_PASS;
if (find_prpl(DEFAULT_PROTO))
|