From: Amos Jeffries Date: Thu, 10 Sep 2009 03:08:35 +0000 (+1200) Subject: AutoDocs: fix some documentation macro errors. X-Git-Tag: SQUID_3_2_0_1~726 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=229af3393e2737e9d3677bbf76f810fa2206d642;p=thirdparty%2Fsquid.git AutoDocs: fix some documentation macro errors. --- diff --git a/squid3.dox b/squid3.dox index 647255503d..c0b6126bea 100644 --- a/squid3.dox +++ b/squid3.dox @@ -1304,7 +1304,8 @@ EXPAND_AS_DEFINED = AsyncCallWrapper \ AsyncCallEnter \ AsyncCallExit \ CBDATA_CLASS2 \ - MEMPROXY_CLASS_INLINE + MEMPROXY_CLASS_INLINE \ + MEMPROXY_CLASS # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone diff --git a/src/HttpHeaderTools.cc b/src/HttpHeaderTools.cc index 4384b3be29..3a2b7d3ad0 100644 --- a/src/HttpHeaderTools.cc +++ b/src/HttpHeaderTools.cc @@ -327,11 +327,11 @@ httpHeaderParseOffset(const char *start, int64_t * value) /** * Parses a quoted-string field (RFC 2616 section 2.2), complains if * something went wrong, returns non-zero on success. - * start should point at the first ". + * start should point at the first double-quote. * RC TODO: This is too looose. We should honour the BNF and exclude CTL's */ int -httpHeaderParseQuotedString (const char *start, String *val) +httpHeaderParseQuotedString(const char *start, String *val) { const char *end, *pos; val->clean();