diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-06-26 14:16:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-06-26 14:16:34 +0000 |
commit | ecef326850ab087d78f217f8d97008d3974cbd76 (patch) | |
tree | 1ddfbd6305b2091d38fb398898e86febe78e41ff /src/bin/psql/command.c | |
parent | c4e63f70fa3c92b658881cc1a2499a51388bfb1f (diff) | |
download | postgresql-ecef326850ab087d78f217f8d97008d3974cbd76.tar.gz postgresql-ecef326850ab087d78f217f8d97008d3974cbd76.zip |
Fix \pset null to use ', not ".
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 9ea8c6e02a0..4e6f9a2354a 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.33 2000/05/12 00:54:53 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.34 2000/06/26 14:16:34 momjian Exp $ */ #include "postgres.h" #include "command.h" @@ -1647,7 +1647,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet) popt->nullPrint = xstrdup(value); } if (!quiet) - printf("Null display is \"%s\".\n", popt->nullPrint ? popt->nullPrint : ""); + printf("Null display is '%s'.\n", popt->nullPrint ? popt->nullPrint : ""); } /* field separator for unaligned text */ |