From: Daniel Gruno Date: Wed, 11 Apr 2012 14:40:09 +0000 (+0000) Subject: It's "return cfg;", not "return dir;". X-Git-Tag: 2.5.0-alpha~7202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0099a1c2a2146dc37ce6038bd5aee0042189955f;p=thirdparty%2Fapache%2Fhttpd.git It's "return cfg;", not "return dir;". git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1324786 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index 80240dc5ea5..7d463085c67 100644 --- a/docs/manual/developer/modguide.html.en +++ b/docs/manual/developer/modguide.html.en @@ -1198,7 +1198,7 @@ our name tag as the Per-directory configuration handler: cfg->path = "/foo/bar"; cfg->typeOfAction = 0x11; } - return dir; + return cfg; } diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index e276f108086..fae6fb7e33f 100644 --- a/docs/manual/developer/modguide.xml +++ b/docs/manual/developer/modguide.xml @@ -1197,7 +1197,7 @@ our name tag as the Per-directory configuration handler: cfg->path = "/foo/bar"; cfg->typeOfAction = 0x11; } - return dir; + return cfg; }