Commit e67cc8a3 authored by Bryan Henderson's avatar Bryan Henderson

Fix bug: -D options implies -d option.

parent 8c2f099a
......@@ -7,7 +7,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.11 1996/11/14 10:23:34 bryanh Exp $
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.12 1996/11/22 04:32:41 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -319,6 +319,7 @@ BootstrapMain(int argc, char *argv[])
switch (flag) {
case 'D':
DataDir = optarg;
break;
case 'd':
DebugMode = 1; /* print out debugging info while parsing */
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment