diff src/protocols/oscar/buddylist.c @ 11253:7d31d61e6438

[gaim-migrate @ 13422] Get rid of faimdprintf and use gaim_debug functions instead committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 13 Aug 2005 06:43:45 +0000
parents 8d74ae785a46
children
line wrap: on
line diff
--- a/src/protocols/oscar/buddylist.c	Sat Aug 13 06:04:30 2005 +0000
+++ b/src/protocols/oscar/buddylist.c	Sat Aug 13 06:43:45 2005 +0000
@@ -117,7 +117,7 @@
 		return -EINVAL;
 
 	for (tmpptr = strtok(localcpy, "&"); tmpptr; ) {
-		faimdprintf(sess, 2, "---adding: %s (%d)\n", tmpptr, strlen(tmpptr));
+		gaim_debug_misc("oscar", "---adding: %s (%d)\n", tmpptr, strlen(tmpptr));
 		len += 1 + strlen(tmpptr);
 		tmpptr = strtok(NULL, "&");
 	}
@@ -132,7 +132,7 @@
 
 	for (tmpptr = strtok(localcpy, "&"); tmpptr; ) {
 
-		faimdprintf(sess, 2, "---adding: %s (%d)\n", tmpptr, strlen(tmpptr));
+		gaim_debug_misc("oscar", "---adding: %s (%d)\n", tmpptr, strlen(tmpptr));
 
 		aimbs_put8(&fr->data, strlen(tmpptr));
 		aimbs_putstr(&fr->data, tmpptr);