From: Christophe Jaillet Date: Tue, 16 Jul 2013 20:16:58 +0000 (+0000) Subject: Fix command line parsing. This was introduced in r1395253 when refactoring the code. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb11abbca93502bbdc6edd081db9d47ebd4ab2a1;p=thirdparty%2Fapache%2Fhttpd.git Fix command line parsing. This was introduced in r1395253 when refactoring the code. Untested PR 55264 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1503866 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/htdbm.c b/support/htdbm.c index 1452d7a0eb8..1cd0591fe6b 100644 --- a/support/htdbm.c +++ b/support/htdbm.c @@ -337,7 +337,7 @@ int main(int argc, const char * const argv[]) if (rv != APR_SUCCESS) exit(ERR_SYNTAX); - while ((rv = apr_getopt(state, "cnmspdBbDivxlC:T:", &opt, &opt_arg)) == APR_SUCCESS) { + while ((rv = apr_getopt(state, "cnmspdBbtivxlC:T:", &opt, &opt_arg)) == APR_SUCCESS) { switch (opt) { case 'c': h->create = 1;