diff options
Diffstat (limited to 'src/bin/psql/input.c')
-rw-r--r-- | src/bin/psql/input.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c index 2da977612cd..4272fcb2e50 100644 --- a/src/bin/psql/input.c +++ b/src/bin/psql/input.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.45 2005/06/10 15:40:41 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.46 2005/10/15 02:49:40 momjian Exp $ */ #include "postgres_fe.h" @@ -24,7 +24,7 @@ #ifdef USE_READLINE static bool useReadline; static bool useHistory; -char *psql_history; +char *psql_history; enum histcontrol @@ -105,7 +105,7 @@ gets_interactive(const char *prompt) HC = GetHistControlConfig(); if (((HC & hctl_ignorespace) && s[0] == ' ') || - ((HC & hctl_ignoredups) && prev_hist && strcmp(s, prev_hist) == 0)) + ((HC & hctl_ignoredups) && prev_hist && strcmp(s, prev_hist) == 0)) { /* Ignore this line as far as history is concerned */ } @@ -221,7 +221,7 @@ saveHistory(char *fname) psql_error("could not save history to file \"%s\": %s\n", fname, strerror(errno)); } #else - psql_error("history is not supported by this installation\n"); + psql_error("history is not supported by this installation\n"); #endif return false; |