diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-11-13 23:37:54 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-11-13 23:37:54 +0000 |
commit | ebd61ac03ff50ab69cdb8fc6330f5dca4551ce92 (patch) | |
tree | 0840f28d018043c4ac4b43572f6c511fb480e076 /src/bin/psql/help.c | |
parent | d63a762f799b08c28190ad3ae5ab4061aa83e762 (diff) | |
download | postgresql-ebd61ac03ff50ab69cdb8fc6330f5dca4551ce92.tar.gz postgresql-ebd61ac03ff50ab69cdb8fc6330f5dca4551ce92.zip |
Remove -k unix socketpath option from client side, allow hostname with
leading slash to behave as a unix socket path.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index b9ee9caa67a..21bcdcafa78 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.33 2000/11/13 15:18:14 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.34 2000/11/13 23:37:53 momjian Exp $ */ #include "postgres.h" #include "help.h" @@ -103,16 +103,6 @@ usage(void) puts(")"); puts(" -H HTML table output mode (-P format=html)"); - - /* Display default Unix-domain socket */ - env = getenv("PGUNIXSOCKET"); - printf(" -k <path> Specify Unix domain socket name (default: "); - if (env) - fputs(env, stdout); - else - fputs("computed from the port", stdout); - puts(")"); - puts(" -l List available databases, then exit"); puts(" -n Disable readline"); puts(" -o <filename> Send query output to filename (or |pipe)"); |