diff src/util.c @ 1269:677e2c9e8baf

[gaim-migrate @ 1279] got rid of printf's (changed to g_print or removed), and in irc.c, made it so we can be in a chat room, and don't do the buddy list right away committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 14 Dec 2000 13:32:10 +0000
parents 9da444224f0e
children cb84b5c6d9ab
line wrap: on
line diff
--- a/src/util.c	Thu Dec 14 13:26:11 2000 +0000
+++ b/src/util.c	Thu Dec 14 13:32:10 2000 +0000
@@ -1153,13 +1153,11 @@
 	if (name !=NULL) {	/* list of names given */
 		names = g_strsplit(name, ",", 32);
 		for (n = names; *n != NULL; n++) {
-			printf("user %s...\n", *n);
 			u = find_user(*n, -1);
 			if (u) {	/* found a user */
 				if (first == NULL)
 					first = g_strdup(*n);
 				if (u->options & OPT_USR_REM_PASS) {
-					printf("got user %s\n", *n);
 					retval = 0;
 					serv_login(u);
 				}