Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e67cc8a

Browse files
author
Bryan Henderson
committed
Fix bug: -D options implies -d option.
1 parent 8c2f099 commit e67cc8a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/bootstrap/bootstrap.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Copyright (c) 1994, Regents of the University of California
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.11 1996/11/14 10:23:34 bryanh Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.12 1996/11/22 04:32:41 bryanh Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -319,6 +319,7 @@ BootstrapMain(int argc, char *argv[])
319319
switch (flag) {
320320
case 'D':
321321
DataDir = optarg;
322+
break;
322323
case 'd':
323324
DebugMode = 1; /* print out debugging info while parsing */
324325
break;

0 commit comments

Comments
 (0)