diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-10-07 15:21:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-10-07 15:21:58 +0000 |
commit | a5d7ba773dff04d700afca6cf86bff64dc663b4f (patch) | |
tree | b772d1e2f500d927ab2e0d42ba12ec91c6b03769 /src/bin/psql/command.c | |
parent | 9da50e1f53f47671f571d75725a093af30bf0623 (diff) | |
download | postgresql-a5d7ba773dff04d700afca6cf86bff64dc663b4f.tar.gz postgresql-a5d7ba773dff04d700afca6cf86bff64dc663b4f.zip |
Adjust comments previously moved to column 1 by pgident.
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 220299bf2bd..3d8752a8888 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2004, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.125 2004/08/29 05:06:54 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.126 2004/10/07 15:21:56 momjian Exp $ */ #include "postgres_fe.h" #include "command.h" @@ -982,7 +982,7 @@ do_connect(const char *new_dbname, const char *new_user) else if (dbparam != new_dbname) /* no new db */ printf(gettext("You are now connected as new user \"%s\".\n"), new_user); else -/* both new */ + /* both new */ printf(gettext("You are now connected to database \"%s\" as user \"%s\".\n"), PQdb(pset.db), PQuser(pset.db)); } |