mturk 2004/12/12 07:14:59 Modified: jk/native/apache-2.0 mod_jk.c Log: The stupid CRLF's are constantly emerging. Remove them. Revision Changes Path 1.108 +9 -9 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c,v retrieving revision 1.107 retrieving revision 1.108 diff -u -r1.107 -r1.108 --- mod_jk.c 7 Dec 2004 13:46:55 -0000 1.107 +++ mod_jk.c 12 Dec 2004 15:14:59 -0000 1.108 @@ -717,7 +717,7 @@ &jk_module); const char *c, *w; - if (worker != NULL && cmd->path == NULL ) {
+ if (worker != NULL && cmd->path == NULL ) { c = context; w = worker; } @@ -726,9 +726,9 @@ w = context; } else { - if (worker == NULL) - return "JkMount needs a path when not defined in a location"; - else + if (worker == NULL) + return "JkMount needs a path when not defined in a location"; + else return "JkMount can not have a path when defined in a location"; } @@ -760,7 +760,7 @@ char *uri; const char *c, *w; - if (worker != NULL && cmd->path == NULL ) { + if (worker != NULL && cmd->path == NULL ) { c = context; w = worker; } @@ -769,9 +769,9 @@ w = context; } else { - if (worker == NULL) - return "JkUnMount needs a path when not defined in a location"; - else + if (worker == NULL) + return "JkUnMount needs a path when not defined in a location"; + else return "JkUnMount can not have a path when defined in a location"; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]