/*
- * $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
}
static void
-parseProxyLine(edge **E)
+parseProxyLine(edge ** E)
{
char *token;
char *t;
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);
/*
- * $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
}
/* 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();