diff src/server.c @ 710:efd72a117875

[gaim-migrate @ 720] yay, icq-style aliasing. joy. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 17 Aug 2000 13:07:52 +0000
parents 668b4d544afe
children d05d746384a7
line wrap: on
line diff
--- a/src/server.c	Thu Aug 17 10:01:50 2000 +0000
+++ b/src/server.c	Thu Aug 17 13:07:52 2000 +0000
@@ -487,8 +487,8 @@
 	}
 }
 
-void serv_build_config(char *buf, int len) {
-	toc_build_config(buf, len);
+void serv_build_config(char *buf, int len, gboolean show) {
+	toc_build_config(buf, len, show);
 }
 
 
@@ -497,7 +497,7 @@
 	if (!USE_OSCAR) {
 		char *buf = g_malloc(BUF_LONG);
 		char *buf2 = g_malloc(MSG_LEN);
-		serv_build_config(buf, BUF_LONG / 2);
+		serv_build_config(buf, BUF_LONG / 2, FALSE);
 		g_snprintf(buf2, MSG_LEN, "toc_set_config {%s}", buf);
 	        sflap_send(buf2, -1, TYPE_DATA);
 		g_free(buf2);