From: wessels <> Date: Mon, 16 Sep 1996 23:21:36 +0000 (+0000) Subject: gindent X-Git-Tag: SQUID_3_0_PRE1~5782 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=618116db9f6c9256638e73d37e55aa265fe0c186;p=thirdparty%2Fsquid.git gindent --- diff --git a/include/util.h b/include/util.h index aa35345093..ddcc549eaa 100644 --- a/include/util.h +++ b/include/util.h @@ -1,5 +1,5 @@ /* - * $Id: util.h,v 1.16 1996/09/15 07:04:01 wessels Exp $ + * $Id: util.h,v 1.17 1996/09/16 17:22:02 wessels Exp $ * * AUTHOR: Harvest Derived * @@ -127,18 +127,18 @@ extern char *strdup __P((char *)); extern char *xstrdup __P((char *)); /* Duplicate a string */ /* from xmalloc.c */ -void *xmalloc __P((size_t)); /* Wrapper for malloc(3) */ +void *xmalloc __P((size_t)); /* Wrapper for malloc(3) */ void *xrealloc __P((void *, size_t)); /* Wrapper for realloc(3) */ void *xcalloc __P((int, size_t)); /* Wrapper for calloc(3) */ -void xfree __P((void *)); /* Wrapper for free(3) */ -void xxfree __P((void *)); /* Wrapper for free(3) */ +void xfree __P((void *)); /* Wrapper for free(3) */ +void xxfree __P((void *)); /* Wrapper for free(3) */ char *xstrdup __P((char *)); char *xstrerror __P((void)); char *getfullhostname __P((void)); void xmemcpy __P((void *, void *, int)); #if XMALLOC_STATISTICS -void malloc_statistics __P((void (*) __P((int, int, void *)), void *)); +void malloc_statistics __P((void (*)__P((int, int, void *)), void *)); #endif /* from debug.c */ diff --git a/src/acl.cc b/src/acl.cc index 579672c272..e88ff0a974 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,5 +1,5 @@ /* - * $Id: acl.cc,v 1.37 1996/09/15 08:04:57 wessels Exp $ + * $Id: acl.cc,v 1.38 1996/09/16 17:21:36 wessels Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -41,16 +41,16 @@ struct _acl_access *ICPAccessList = NULL; static struct _acl *AclList = NULL; static struct _acl **AclListTail = &AclList; -static void aclDestroyAclList __P((struct _acl_list *list)); -static void aclDestroyIpList __P((struct _acl_ip_data *data)); -static void aclDestroyRegexList __P((struct _relist *data)); -static void aclDestroyTimeList __P((struct _acl_time_data *data)); +static void aclDestroyAclList __P((struct _acl_list * list)); +static void aclDestroyIpList __P((struct _acl_ip_data * data)); +static void aclDestroyRegexList __P((struct _relist * data)); +static void aclDestroyTimeList __P((struct _acl_time_data * data)); static int aclMatchDomainList __P((wordlist *, char *)); static int aclMatchAclList __P((struct _acl_list *, aclCheck_t *)); static int aclMatchInteger __P((intlist * data, int i)); -static int aclMatchIp __P((struct _acl_ip_data *data, struct in_addr c)); +static int aclMatchIp __P((struct _acl_ip_data * data, struct in_addr c)); static int aclMatchRegex __P((relist * data, char *word)); -static int aclMatchTime __P((struct _acl_time_data *data, time_t when)); +static int aclMatchTime __P((struct _acl_time_data * data, time_t when)); static intlist *aclParseIntlist __P((void)); static struct _acl_ip_data *aclParseIpList __P((void)); static intlist *aclParseMethodList __P((void)); diff --git a/src/ipcache.cc b/src/ipcache.cc index 25549ab3e8..204830ed7a 100644 --- a/src/ipcache.cc +++ b/src/ipcache.cc @@ -1,5 +1,5 @@ /* - * $Id: ipcache.cc,v 1.58 1996/09/16 16:28:39 wessels Exp $ + * $Id: ipcache.cc,v 1.59 1996/09/16 17:21:42 wessels Exp $ * * DEBUG: section 14 IP Cache * AUTHOR: Harvest Derived @@ -148,7 +148,7 @@ static void ipcache_call_pending __P((ipcache_entry *)); static void ipcache_add __P((char *, ipcache_entry *, struct hostent *, int)); static int ipcacheHasPending __P((ipcache_entry *)); static ipcache_entry *ipcache_get __P((char *)); -static int dummy_handler __P((int, struct hostent *hp, void *)); +static int dummy_handler __P((int, struct hostent * hp, void *)); static int ipcacheExpiredEntry __P((ipcache_entry *)); static void ipcacheAddPending __P((ipcache_entry *, int fd, IPH, void *)); static void ipcacheEnqueue __P((ipcache_entry *)); diff --git a/src/main.cc b/src/main.cc index 51430ce8bc..2dc34cbde9 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,5 +1,5 @@ /* - * $Id: main.cc,v 1.74 1996/09/15 05:04:36 wessels Exp $ + * $Id: main.cc,v 1.75 1996/09/16 17:21:43 wessels Exp $ * * DEBUG: section 1 Startup and Main Loop * AUTHOR: Harvest Derived @@ -130,7 +130,7 @@ struct in_addr local_addr; char *dash_str = "-"; /* for error reporting from xmalloc and friends */ -extern void (*failure_notify) __P((char *)); +extern void (*failure_notify) __P((char *)); static int rotate_pending = 0; /* set by SIGUSR1 handler */ static int httpPortNumOverride = 1;