]> granicus.if.org Git - apache/commitdiff
Rebuild
authorDaniel Gruno <humbedooh@apache.org>
Tue, 10 Apr 2012 06:32:19 +0000 (06:32 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 10 Apr 2012 06:32:19 +0000 (06:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1311595 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/modguide.html.en

index 3de79425edeefabcefe023b31d5777cbe496006d..780d3ca2189175ad001364757e82d1d5cef54c3e 100644 (file)
@@ -231,7 +231,7 @@ In C code, our example handler will now look like this:<br />
 <code style="color:#400000; font-weight:bold; ">static</code> <code style="color:#400000; font-weight:bold; ">int</code> example_handler<code style="color:#806030; ">(</code>request_rec <code style="color:#806030; ">*</code>r<code style="color:#806030; ">)</code>
 <code style="color:#806030; ">{</code>
     <code style="color:#c34e00; ">/* First off, we need to check if this is a call for the "example-handler" handler.</code>
-<code style="color:#c34e00; ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;* If it is, we accept it and do our things, it not, we simply return DECLINED,</code>
+<code style="color:#c34e00; ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;* If it is, we accept it and do our things, if not, we simply return DECLINED,</code>
 <code style="color:#c34e00; ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;* and Apache will try somewhere else.</code>
 <code style="color:#c34e00; ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*/</code>
     <code style="color:#400000; font-weight:bold; ">if</code> <code style="color:#806030; ">(</code><code style="color:#806030; ">!</code>r<code style="color:#806030; ">-</code><code style="color:#806030; ">&gt;</code><code style="color:#008833">handler</code> <code style="color:#806030; ">|</code><code style="color:#806030; ">|</code> <code style="color:#800040; ">strcmp</code><code style="color:#806030; ">(</code>r<code style="color:#806030; ">-</code><code style="color:#806030; ">&gt;</code><code style="color:#008833">handler</code><code style="color:#806030; ">,</code> <code style="color:#800000; ">"</code><code style="color:#e60000; ">example-handler</code><code style="color:#800000; ">"</code><code style="color:#806030; ">)</code><code style="color:#806030; ">)</code> <code style="color:#400000; font-weight:bold; ">return</code> <code style="color:#806030; ">(</code>DECLINED<code style="color:#806030; ">)</code><code style="color:#806030; ">;</code>