diff options
Diffstat (limited to 'src/bin/psql/startup.c')
-rw-r--r-- | src/bin/psql/startup.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 5d7fe6ea27f..831e1b3ca6f 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -151,9 +151,9 @@ main(int argc, char *argv[]) parse_psql_options(argc, argv, &options); /* - * If no action was specified and we're in non-interactive mode, treat - * it as if the user had specified "-f -". This lets single-transaction - * mode work in this case. + * If no action was specified and we're in non-interactive mode, treat it + * as if the user had specified "-f -". This lets single-transaction mode + * work in this case. */ if (options.action == ACT_NOTHING && pset.notty) { @@ -165,9 +165,9 @@ main(int argc, char *argv[]) if (options.single_txn && options.action != ACT_FILE) { if (options.action == ACT_NOTHING) - fprintf(stderr,_("%s: -1 can only be used in non-interactive mode\n"), pset.progname); + fprintf(stderr, _("%s: -1 can only be used in non-interactive mode\n"), pset.progname); else - fprintf(stderr,_("%s: -1 is incompatible with -c and -l\n"), pset.progname); + fprintf(stderr, _("%s: -1 is incompatible with -c and -l\n"), pset.progname); exit(EXIT_FAILURE); } @@ -621,7 +621,7 @@ process_psqlrc(char *argv0) if (envrc != NULL && strlen(envrc) > 0) { /* might need to free() this */ - char *envrc_alloc = pstrdup(envrc); + char *envrc_alloc = pstrdup(envrc); expand_tilde(&envrc_alloc); process_psqlrc_file(envrc_alloc); |