]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Thu, 11 Apr 1996 02:53:44 +0000 (02:53 +0000)
committerwessels <>
Thu, 11 Apr 1996 02:53:44 +0000 (02:53 +0000)
src/cache_cf.cc
src/ftp.cc
src/ipcache.cc

index b564a8397dcd4581e21e375a2ed0a8067b735944..849b857112a9e44912f767fe46cfbb1b097840f0 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: cache_cf.cc,v 1.30 1996/04/10 20:45:24 wessels Exp $ */
+/* $Id: cache_cf.cc,v 1.31 1996/04/10 20:53:44 wessels Exp $ */
 
 /* DEBUG: Section 3             cache_cf: Configuration file parsing */
 
@@ -415,12 +415,12 @@ void addToIPACL(list, ip_str, access)
 #endif /* ndef IPACL_INTS */
 
 static void wordlistDestroy(list)
-    wordlist **list;
+     wordlist **list;
 {
     wordlist *w = NULL;
     wordlist *n = NULL;
 
-    for (w = *list; w; w=n) {
+    for (w = *list; w; w = n) {
        n = w->next;
        safe_free(w->key);
        safe_free(w);
@@ -1778,31 +1778,31 @@ int getAnnounceRate()
 {
     return Config.Announce.rate;
 }
-wordlist * getHttpStoplist()
+wordlist *getHttpStoplist()
 {
     return Config.http_stoplist;
 }
-wordlist * getFtpStoplist()
+wordlist *getFtpStoplist()
 {
     return Config.ftp_stoplist;
 }
-wordlist * getGopherStoplist()
+wordlist *getGopherStoplist()
 {
     return Config.gopher_stoplist;
 }
-wordlist * getLocalDomainList()
+wordlist *getLocalDomainList()
 {
     return Config.local_domain_list;
 }
-wordlist * getCacheDirs()
+wordlist *getCacheDirs()
 {
     return Config.cache_dirs;
 }
-wordlist * getInsideFirewallList()
+wordlist *getInsideFirewallList()
 {
     return Config.inside_firewall_list;
 }
-wordlist * getBindAddrList()
+wordlist *getBindAddrList()
 {
     return Config.bind_addr_list;
 }
index 4c5a0acd189ab6a76b95fdfd143664e39481e8dc..15649479f94d2d0d44d70c0b6e1aff613f130a44 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: ftp.cc,v 1.32 1996/04/10 20:45:26 wessels Exp $ */
+/* $Id: ftp.cc,v 1.33 1996/04/10 20:53:45 wessels Exp $ */
 
 /*
  * DEBUG: Section 9           ftp: FTP
@@ -125,7 +125,7 @@ int ftpCachable(url)
     wordlist *p = NULL;
 
     /* scan stop list */
-    for (p = getFtpStoplist(); p; p=p->next) {
+    for (p = getFtpStoplist(); p; p = p->next) {
        if (strstr(url, p->key))
            return 0;
     }
index eedf3323bf63a95fc069202ca27bbfcff0926dda..0eaa6977d867798a4190432161c4f463391040a2 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: ipcache.cc,v 1.19 1996/04/10 20:45:28 wessels Exp $ */
+/* $Id: ipcache.cc,v 1.20 1996/04/10 20:53:46 wessels Exp $ */
 
 /*
  * DEBUG: Section 14          ipcache: IP Cache
@@ -1139,7 +1139,7 @@ void ipcache_init()
 
     last_dns_dispatched = getDnsChildren() - 1;
     if (!dns_error_message)
-        dns_error_message = xcalloc(1, 256);
+       dns_error_message = xcalloc(1, 256);
 
     /* test naming lookup */
     if (!do_dns_test) {