From: Automatic source maintenance Date: Wed, 18 Jul 2012 00:12:18 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: sourceformat-review-1~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=999aa5d2d26d0204a594e7c96dfab91b074a6568;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/AccessLogEntry.h b/src/AccessLogEntry.h index 1786e7502e..2c12c4f168 100644 --- a/src/AccessLogEntry.h +++ b/src/AccessLogEntry.h @@ -142,8 +142,8 @@ public: #if USE_SSL ssluser(NULL), #endif - port(NULL) - {; + port(NULL) { + ; } Ip::Address caddr; diff --git a/src/HttpHeaderTools.cc b/src/HttpHeaderTools.cc index 3bb60f78aa..1dfaca43dd 100644 --- a/src/HttpHeaderTools.cc +++ b/src/HttpHeaderTools.cc @@ -649,8 +649,8 @@ httpHdrAdd(HttpHeader *heads, HttpRequest *request, HeaderWithAclList &headersAd if (!fieldValue || fieldValue[0] == '\0') fieldValue = "-"; - HttpHeaderEntry *e = new HttpHeaderEntry(hwa->fieldId, hwa->fieldName.c_str(), - fieldValue); + HttpHeaderEntry *e = new HttpHeaderEntry(hwa->fieldId, hwa->fieldName.c_str(), + fieldValue); heads->addEntry(e); } } diff --git a/src/HttpRequest.h b/src/HttpRequest.h index e1d1708068..d25f86532b 100644 --- a/src/HttpRequest.h +++ b/src/HttpRequest.h @@ -242,7 +242,7 @@ public: CbcPointer clientConnectionManager; /** - * The AccessLogEntry for the current ClientHttpRequest/Server HttpRequest + * The AccessLogEntry for the current ClientHttpRequest/Server HttpRequest * pair, if known; */ AccessLogEntryPointer al;