diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-08-03 05:12:45 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-08-03 05:12:45 +0000 |
commit | 6bf23357262765f263db57cae59a4f345bce3de6 (patch) | |
tree | 7fdc282baea0379ec8a487212ba9850959cfbf7b /src | |
parent | cb3a941308d4048e6e0b803cf6a690e8c13d4905 (diff) | |
download | postgresql-6bf23357262765f263db57cae59a4f345bce3de6.tar.gz postgresql-6bf23357262765f263db57cae59a4f345bce3de6.zip |
Fix copy-and-pasteo that's causing pg_regress to lie about which file it can't
read when the --temp-config argument is bad. Noted while wondering why
buildfarm member dungbeetle is failing ... this isn't why, but it is why
the error report isn't very helpful ...
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/pg_regress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index 75b0ea53422..49e44cef542 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.41.2.2 2008/03/31 01:32:01 tgl Exp $ + * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.41.2.3 2008/08/03 05:12:45 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -2035,7 +2035,7 @@ regression_main(int argc, char *argv[], init_function ifunc, test_function tfunc extra_conf = fopen(temp_config, "r"); if (extra_conf == NULL) { - fprintf(stderr, _("\n%s: could not open %s to read extra config:\nError was %s\n"), progname, buf, strerror(errno)); + fprintf(stderr, _("\n%s: could not open %s to read extra config:\nError was %s\n"), progname, temp_config, strerror(errno)); exit_nicely(2); } while (fgets(line_buf, sizeof(line_buf), extra_conf) != NULL) |