PR: 9989
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95806
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.40
+ *) Fix a silly htpasswd.c logic error that incorrectly reported that
+ both -c and -n had been used. PR 9989 [Cliff Woolley]
+
*) Fixed a mod_include error case in which no HTTP response was sent
to the client if an shtml document contained an unterminated SSI
directive [Brian Pane]
}
}
- if (*mask & (APHTP_NEWFILE | APHTP_NOFILE)) {
+ if ((*mask & APHTP_NEWFILE) && (*mask & APHTP_NOFILE)) {
apr_file_printf(errfile, "%s: -c and -n options conflict\n", argv[0]);
exit(ERR_SYNTAX);
}