diff options
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index d6a925e435b..6d9cd6492f6 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -995,7 +995,7 @@ exec_command(const char *cmd, if (!SetVariable(pset.vars, opt, result)) { - psql_error("\\%s: error\n", cmd); + psql_error("\\%s: error while setting variable\n", cmd); success = false; } @@ -1096,7 +1096,7 @@ exec_command(const char *cmd, if (!SetVariable(pset.vars, opt0, newval)) { - psql_error("\\%s: error\n", cmd); + psql_error("\\%s: error while setting variable\n", cmd); success = false; } free(newval); @@ -1272,7 +1272,7 @@ exec_command(const char *cmd, } else if (!SetVariable(pset.vars, opt, NULL)) { - psql_error("\\%s: error\n", cmd); + psql_error("\\%s: error while setting variable\n", cmd); success = false; } free(opt); |