From: Tom Lane Date: Thu, 3 Sep 2009 01:40:11 +0000 (+0000) Subject: Remove initdb's rather gratuitous check to see if the backend created a X-Git-Url: http://git.postgresql.org/gitweb/-?a=commitdiff_plain;h=fa96a77c97896dceeb5c4f6ecc101d41a18b56f5;p=users%2Fsimon%2Fpostgres.git Remove initdb's rather gratuitous check to see if the backend created a flat password file, because it never will anymore. We had managed to miss this during the recent flat-file-ectomy because it only happens if --pwfile or --pwprompt is specified to initdb. Apparently, few hackers use those. Reported by Erik Rijkers. --- diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index b6998f36fd..b2e6a23c32 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -1434,8 +1434,6 @@ get_set_pwd(void) char *pwd1, *pwd2; - char pwdpath[MAXPGPATH]; - struct stat statbuf; if (pwprompt) { @@ -1505,16 +1503,6 @@ get_set_pwd(void) PG_CMD_CLOSE; check_ok(); - - snprintf(pwdpath, sizeof(pwdpath), "%s/global/pg_auth", pg_data); - if (stat(pwdpath, &statbuf) != 0 || !S_ISREG(statbuf.st_mode)) - { - fprintf(stderr, - _("%s: The password file was not generated. " - "Please report this problem.\n"), - progname); - exit_nicely(); - } } /*