Buf fix to pg_restire -S option in getopts
authorPhilip Warner
Tue, 8 Aug 2000 11:48:59 +0000 (11:48 +0000)
committerPhilip Warner
Tue, 8 Aug 2000 11:48:59 +0000 (11:48 +0000)
src/bin/pg_dump/pg_restore.c

index e85a42a2317271225fe7bb94ee371fe28f077ed1..dd10ff54808d4bc241d6a4397a215c9c06495f26 100644 (file)
@@ -132,9 +132,9 @@ int main(int argc, char **argv)
    progname = *argv;
 
 #ifdef HAVE_GETOPT_LONG
-   while ((c = getopt_long(argc, argv, "acCd:f:F:h:i:lNoOp:rRsSt:T:uU:vx", cmdopts, NULL)) != EOF)
+   while ((c = getopt_long(argc, argv, "acCd:f:F:h:i:lNoOp:rRsS:t:T:uU:vx", cmdopts, NULL)) != EOF)
 #else
-   while ((c = getopt(argc, argv, "acCd:f:F:h:i:lNoOp:rRsSt:T:uU:vx")) != -1)
+   while ((c = getopt(argc, argv, "acCd:f:F:h:i:lNoOp:rRsS:t:T:uU:vx")) != -1)
 #endif
    {
        switch (c)