|
3 | 3 | *
|
4 | 4 | * Copyright 2000 by PostgreSQL Global Development Group
|
5 | 5 | *
|
6 |
| - * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.41 2000/11/27 02:20:36 tgl Exp $ |
| 6 | + * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.42 2001/01/23 22:46:14 petere Exp $ |
7 | 7 | */
|
8 | 8 | #include"postgres.h"
|
9 | 9 |
|
@@ -368,14 +368,14 @@ parse_psql_options(int argc, char *argv[], struct adhoc_opts * options)
|
368 | 368 | memset(options,0,sizeof*options);
|
369 | 369 |
|
370 | 370 | #ifdefHAVE_GETOPT_LONG
|
371 |
| -while ((c=getopt_long(argc,argv,"aAc:d:eEf:F:lh:Hno:p:P:qRsStT:uU:v:VWxX?",long_options,&optindex))!=-1) |
| 371 | +while ((c=getopt_long(argc,argv,"aAc:d:eEf:F:h:Hlno:p:P:qR:sStT:uU:v:VWxX?",long_options,&optindex))!=-1) |
372 | 372 | #else/* not HAVE_GETOPT_LONG */
|
373 | 373 |
|
374 | 374 | /*
|
375 | 375 | * Be sure to leave the '-' in here, so we can catch accidental long
|
376 | 376 | * options.
|
377 | 377 | */
|
378 |
| -while ((c=getopt(argc,argv,"aAc:d:eEf:F:lh:Hno:p:P:qRsStT:uU:v:VWxX?-"))!=-1) |
| 378 | +while ((c=getopt(argc,argv,"aAc:d:eEf:F:h:Hlno:p:P:qR:sStT:uU:v:VWxX?-"))!=-1) |
379 | 379 | #endif/* not HAVE_GETOPT_LONG */
|
380 | 380 | {
|
381 | 381 | switch (c)
|
|