Fix bug: -D options implies -d option.
authorBryan Henderson <[email protected]>
Fri, 22 Nov 1996 04:32:41 +0000 (04:32 +0000)
committerBryan Henderson <[email protected]>
Fri, 22 Nov 1996 04:32:41 +0000 (04:32 +0000)
src/backend/bootstrap/bootstrap.c

index 0287de35b1c4f4d534a20b1c8de535622e31a0c5..5fbb8637f0644b78350b9315fe43bc7fd8c379be 100644 (file)
@@ -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;