From: wessels <> Date: Thu, 23 Oct 1997 10:01:23 +0000 (+0000) Subject: remove some pointers from debugs X-Git-Tag: SQUID_3_0_PRE1~4733 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cebe3f19f2272fc6712714e4e6753caba0af13f3;p=thirdparty%2Fsquid.git remove some pointers from debugs --- diff --git a/src/comm.cc b/src/comm.cc index 16091c5062..a9a9f29605 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,5 +1,5 @@ /* - * $Id: comm.cc,v 1.188 1997/10/21 15:59:11 wessels Exp $ + * $Id: comm.cc,v 1.189 1997/10/23 04:01:23 wessels Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -1060,7 +1060,7 @@ commSetSelect(int fd, unsigned int type, PF * handler, void *client_data, time_t fde *F = &fd_table[fd]; assert(fd >= 0); assert(F->open == FD_OPEN); - debug(5, 5) ("commSetSelect: FD %d, type=%d, handler=%p, data=%p\n", fd, type, handler, client_data); + debug(5, 5) ("commSetSelect: FD %d type %d\n", fd, type); if (type & COMM_SELECT_READ) { F->read_handler = handler; F->read_data = client_data; @@ -1295,8 +1295,8 @@ commHandleWrite(int fd, void *data) int len = 0; int nleft; - debug(5, 5) ("commHandleWrite: FD %d: state=%p, off %d, sz %d.\n", - fd, state, state->offset, state->size); + debug(5, 5) ("commHandleWrite: FD %d: off %d, sz %d.\n", + fd, state->offset, state->size); nleft = state->size - state->offset; len = write(fd, state->buf + state->offset, nleft);