]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
gindent
authorwessels <>
Wed, 27 Nov 1996 06:22:16 +0000 (06:22 +0000)
committerwessels <>
Wed, 27 Nov 1996 06:22:16 +0000 (06:22 +0000)
src/cache_cf.cc
src/url.cc

index d41316a10b5f523688f2c55bf1e971c67908d4d2..85737b49e3ae99db6753dede685987b27be03920 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: cache_cf.cc,v 1.145 1996/11/25 18:50:28 wessels Exp $
+ * $Id: cache_cf.cc,v 1.146 1996/11/26 23:22:16 wessels Exp $
  *
  * DEBUG: section 3     Configuration File Parsing
  * AUTHOR: Harvest Derived
@@ -957,7 +957,7 @@ parseVizHackLine(void)
 }
 
 static void
-parseProxyLine(edge **E)
+parseProxyLine(edge ** E)
 {
     char *token;
     char *t;
@@ -969,7 +969,7 @@ parseProxyLine(edge **E)
        edgeDestroy(*E);
        *E = NULL;
     }
-    e = xcalloc (1, sizeof(edge));
+    e = xcalloc(1, sizeof(edge));
     if ((t = strchr(token, ':'))) {
        *t++ = '\0';
        e->http_port = atoi(t);
index 9eae9e73972107a264f5dceb1eda3e45eff61c54..74464487a6f6fa6fab5dc599f5b2c1d9255c8e8f 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: url.cc,v 1.47 1996/11/25 23:37:11 wessels Exp $
+ * $Id: url.cc,v 1.48 1996/11/26 23:22:19 wessels Exp $
  *
  * DEBUG: section 23    URL Parsing
  * AUTHOR: Duane Wessels
@@ -240,8 +240,8 @@ urlParse(method_t method, char *url)
     }
     /* remove trailing slashes from FTP URLs */
     if (protocol == PROTO_FTP) {
-        t = urlpath + strlen(urlpath);
-        while (*(--t) == '/')
+       t = urlpath + strlen(urlpath);
+       while (*(--t) == '/')
            *t = '\0';
     }
     request = get_free_request_t();