From: Bryan Henderson Date: Fri, 22 Nov 1996 04:32:41 +0000 (+0000) Subject: Fix bug: -D options implies -d option. X-Git-Tag: REL2_0~74 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=e67cc8a346d43a17c2789bd4e62dc435355956dc;p=users%2Fc2main%2Fpostgres.git Fix bug: -D options implies -d option. --- diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 0287de35b1..5fbb8637f0 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -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;