From 8eb58c9c8eeb97b905b9a694a94f232f9bb7dbbb Mon Sep 17 00:00:00 2001 From: wessels <> Date: Tue, 15 Oct 1996 10:58:23 +0000 Subject: [PATCH] gindent --- src/acl.cc | 4 ++-- src/client_db.cc | 3 ++- src/comm.cc | 4 ++-- src/net_db.cc | 4 ++-- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/acl.cc b/src/acl.cc index f365477577..196e892f1c 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,5 +1,5 @@ /* - * $Id: acl.cc,v 1.50 1996/10/13 09:16:32 wessels Exp $ + * $Id: acl.cc,v 1.51 1996/10/15 04:58:23 wessels Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -227,7 +227,7 @@ decode_addr(char *asc, struct in_addr *addr, struct in_addr *mask) } default: /* Note, must use plain gethostbyname() here because at startup - ipcache hasn't been initialized */ + * ipcache hasn't been initialized */ if ((hp = gethostbyname(asc)) != NULL) { *addr = inaddrFromHostent(hp); } else { diff --git a/src/client_db.cc b/src/client_db.cc index 35bd7e0632..8d5e4e2f71 100644 --- a/src/client_db.cc +++ b/src/client_db.cc @@ -1,3 +1,4 @@ + #include "squid.h" typedef struct _client_info { @@ -64,7 +65,7 @@ clientdbDeniedPercent(struct in_addr addr) return 100 * c->result_hist[ICP_OP_DENIED] / c->n_icp; } -void +void clientdbDump(StoreEntry * sentry) { ClientInfo *c; diff --git a/src/comm.cc b/src/comm.cc index aff332984b..b151326512 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $Id: comm.cc,v 1.90 1996/10/13 06:19:43 wessels Exp $ + * $Id: comm.cc,v 1.91 1996/10/15 04:58:25 wessels Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -934,7 +934,7 @@ comm_join_mcast_groups(int fd) for (s = Config.mcast_group_list; s; s = s->next) { debug(5, 10, "comm_join_mcast_groups: joining group %s on FD %d\n", - s->key, fd); + s->key, fd); mr.imr_multiaddr.s_addr = inet_addr(s->key); mr.imr_interface.s_addr = INADDR_ANY; if (setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, diff --git a/src/net_db.cc b/src/net_db.cc index 2909c54d35..b98d473889 100644 --- a/src/net_db.cc +++ b/src/net_db.cc @@ -330,7 +330,7 @@ netdbDump(StoreEntry * sentry) struct _net_db_name *x; int k; int i; - storeAppendPrintf(sentry, "{Network DB Statistics:\n"); */ } */ + storeAppendPrintf(sentry, "{Network DB Statistics:\n"); /* } */ storeAppendPrintf(sentry, "{%-16.16s %9s %7s %5s %s}\n", "Network", "recv/sent", @@ -347,7 +347,7 @@ netdbDump(StoreEntry * sentry) (QS) sortByHops); for (k = 0; k < i; k++) { n = *(list + k); - storeAppendPrintf(sentry, "{%-16.16s %4d/%4d %7.1f %5.1f", /* } */ + storeAppendPrintf(sentry, "{%-16.16s %4d/%4d %7.1f %5.1f", /* } */ n->network, n->pings_recv, n->pings_sent, -- 2.47.2