
fielding at hyperreal
Apr 15, 1997, 10:48 PM
Post #1 of 1
(31 views)
Permalink
|
|
cvs commit: apache/src/modules/example mod_example.c
|
|
fielding 97/04/15 22:47:59 Modified: src/modules/example mod_example.c Log: More warnings plugged about overlapping comments. It would be nice to find a use for our_sconfig in the example, since we still get mod_example.c:245: warning: `our_sconfig' defined but not used when compiled. Revision Changes Path 1.6 +3 -3 apache/src/modules/example/mod_example.c Index: mod_example.c =================================================================== RCS file: /export/home/cvs/apache/src/modules/example/mod_example.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C3 -r1.5 -r1.6 *** mod_example.c 1997/04/15 10:27:14 1.5 --- mod_example.c 1997/04/16 05:47:58 1.6 *************** *** 125,131 **** * * static const char *handle_NO_ARGS * (cmd_parms *cmd, void *mconfig); ! * /* * Command handler for a RAW_ARGS directive. The "args" argument is the text --- 125,131 ---- * * static const char *handle_NO_ARGS * (cmd_parms *cmd, void *mconfig); ! */ /* * Command handler for a RAW_ARGS directive. The "args" argument is the text *************** *** 913,920 **** * a NULL block, since it can be of variable length. * * Note that content-handlers are invoked on a most-specific to least-specific ! * basis; that is, an handler that is declared for "text/plain" will be ! * invoked before one that was declared for "text/*". Note also that * if a content-handler returns anything except DECLINED, no other * content-handlers will be called. */ --- 913,920 ---- * a NULL block, since it can be of variable length. * * Note that content-handlers are invoked on a most-specific to least-specific ! * basis; that is, a handler that is declared for "text/plain" will be ! * invoked before one that was declared for "text / *". Note also that * if a content-handler returns anything except DECLINED, no other * content-handlers will be called. */
|