]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
AutoDocs: fix some documentation macro errors.
authorAmos Jeffries <squid3@treenet.co.nz>
Thu, 10 Sep 2009 03:08:35 +0000 (15:08 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Thu, 10 Sep 2009 03:08:35 +0000 (15:08 +1200)
squid3.dox
src/HttpHeaderTools.cc

index 647255503d448f20d2508c147b86e4a84d87a362..c0b6126beaeeeacbff03e95591db8425b8468b73 100644 (file)
@@ -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 
index 4384b3be2949a40adc3e38c8a322303edcd0f668..3a2b7d3ad02956acf4ee51395f199e9c896be4e4 100644 (file)
@@ -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();