aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/psql/settings.h')
-rw-r--r--src/bin/psql/settings.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bin/psql/settings.h b/src/bin/psql/settings.h
index d56b0c77e9b..d5d306b1586 100644
--- a/src/bin/psql/settings.h
+++ b/src/bin/psql/settings.h
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/settings.h,v 1.9 2000/02/16 13:15:26 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/settings.h,v 1.10 2000/04/12 17:16:23 momjian Exp $
*/
#ifndef SETTINGS_H
#define SETTINGS_H
@@ -25,7 +25,7 @@
typedef struct _psqlSettings
{
PGconn *db; /* connection to backend */
- int encoding;
+ int encoding;
FILE *queryFout; /* where to send the query results */
bool queryFoutPipe; /* queryFout is from a popen() */
@@ -44,12 +44,12 @@ typedef struct _psqlSettings
* loop */
bool cur_cmd_interactive;
- char *progname; /* in case you renamed psql */
- char *inputfile; /* for error reporting */
- unsigned lineno; /* also for error reporting */
+ char *progname; /* in case you renamed psql */
+ char *inputfile; /* for error reporting */
+ unsigned lineno; /* also for error reporting */
- bool issuper; /* is the current user a superuser?
- (used to form the prompt) */
+ bool issuper; /* is the current user a superuser? (used
+ * to form the prompt) */
} PsqlSettings;
extern PsqlSettings pset;