From: Henrik Nordstrom Date: Tue, 3 Feb 2009 20:14:26 +0000 (+0100) Subject: Accidental typo in previous squidclient change X-Git-Tag: SQUID_3_2_0_1~1221 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d6f13d14bda29a1b2f982ba46b1649d0090239e3;p=thirdparty%2Fsquid.git Accidental typo in previous squidclient change --- diff --git a/tools/squidclient.cc b/tools/squidclient.cc index ba9fcd8183..a5e5de8f2d 100644 --- a/tools/squidclient.cc +++ b/tools/squidclient.cc @@ -433,7 +433,7 @@ main(int argc, char *argv[]) /* HTTP/1.0 may need keep-alive */ if (strcmp(version, "1.0") == 0) { if (keep_alive) { - if (strchr(url, ':') + if (strchr(url, ':')) snprintf(buf, BUFSIZ, "Proxy-Connection: keep-alive\r\n"); else strcat(msg, "Connection: keep-alive\r\n");