From: Krzysztof Piotr Oledzki Date: Mon, 22 Feb 2010 18:29:40 +0000 (+0100) Subject: [BUG] uri_auth: ST_SHLGNDS should be 0x00000008 not 0x0000008 X-Git-Tag: v1.4.0~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15f0ac482929039e74bf0c668535f06522c8c245;p=thirdparty%2Fhaproxy.git [BUG] uri_auth: ST_SHLGNDS should be 0x00000008 not 0x0000008 --- diff --git a/include/common/uri_auth.h b/include/common/uri_auth.h index e669880486..a73c1adbae 100644 --- a/include/common/uri_auth.h +++ b/include/common/uri_auth.h @@ -29,7 +29,7 @@ struct stat_scope { #define ST_HIDEVER 0x00000001 /* do not report the version and reldate */ #define ST_SHNODE 0x00000002 /* show node name */ #define ST_SHDESC 0x00000004 /* show description */ -#define ST_SHLGNDS 0x0000008 /* show legends */ +#define ST_SHLGNDS 0x00000008 /* show legends */ /* later we may link them to support multiple URI matching */ struct uri_auth {