summaryrefslogtreecommitdiff
path: root/server/server.c
diff options
context:
space:
mode:
authorGravatar Lucien Van Elsen <lwvanels@mit.edu>1992-01-17 02:48:05 +0000
committerGravatar Lucien Van Elsen <lwvanels@mit.edu>1992-01-17 02:48:05 +0000
commitd4c1ce69b8a6c8c14c36c796fd5f19064ecb2ca0 (patch)
tree6e5702aba785878fcda3dd8360558af4067fb0f4 /server/server.c
parentdbc53c10d0d6b9d38b2d343f702e639b1b0221fb (diff)
turn of extra debugging info (for speed)
Diffstat (limited to 'server/server.c')
-rw-r--r--server/server.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/server/server.c b/server/server.c
index d869bea..67c47f8 100644
--- a/server/server.c
+++ b/server/server.c
@@ -524,7 +524,7 @@ server_dispatch(notice, auth, who)
ZSTRING *notice_class;
-#if 1
+#if 0
zdbug((LOG_DEBUG, "server_dispatch"));
#endif
@@ -546,7 +546,7 @@ server_dispatch(notice, auth, who)
to the caller, and the caller will re-queue the message
for us to process later. */
- notice_class = make_zstring(notice->z_class_inst,1);
+ notice_class = make_zstring(notice->z_class,1);
if (class_is_admin(notice_class)) {
/* admins don't get acked, else we get a packet loop */
@@ -709,7 +709,7 @@ server_kill_clt(client)
(void) sprintf(buf, "%d", ntohs(client->zct_sin.sin_port));
lyst[1] = buf;
-#if 1
+#if 0
zdbug((LOG_DEBUG, "server kill clt %s/%s", lyst[0], lyst[1]));
#endif
@@ -776,7 +776,7 @@ kill_clt(notice, server)
server->addr);
return(ZERR_NONE); /* XXX */
}
-#if 1
+#if 0
if (zdebug || 1)
syslog(LOG_DEBUG, "kill_clt clt_dereg %s/%d from %s",
inet_ntoa (who.sin_addr), ntohs (who.sin_port),
@@ -864,7 +864,7 @@ server_flush(which)
{
register ZHostList_t *hst;
-#if 1
+#if 0
if (zdebug)
syslog (LOG_DEBUG, "server_flush %s", which->addr);
#endif
@@ -875,7 +875,7 @@ server_flush(which)
hst != which->zs_hosts;
hst = which->zs_hosts->q_forw) {
/* for each host, flush all data */
-#if 1
+#if 0
if (zdebug)
syslog (LOG_DEBUG, "... host %s",
inet_ntoa (hst->zh_addr.sin_addr));