From 0099a1c2a2146dc37ce6038bd5aee0042189955f Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Wed, 11 Apr 2012 14:40:09 +0000 Subject: [PATCH] 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 --- docs/manual/developer/modguide.html.en | 2 +- docs/manual/developer/modguide.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index 80240dc5ea..7d463085c6 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 e276f10808..fae6fb7e33 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; }