From b315d5dfef845ab29ff4a2e0460deaa10868876b Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Tue, 16 Jul 2013 20:16:58 +0000 Subject: [PATCH] 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 --- support/htdbm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/htdbm.c b/support/htdbm.c index 1452d7a0eb..1cd0591fe6 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; -- 2.49.0