1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Woops. Previous patch to remove -X options missed getopt_long calls().

Noted by Tom Lane.
This commit is contained in:
Robert Haas
2011-03-18 21:22:43 -04:00
parent 0191e120e6
commit f78ba0a73a
3 changed files with 3 additions and 3 deletions

View File

@@ -365,7 +365,7 @@ main(int argc, char **argv)
}
}
while ((c = getopt_long(argc, argv, "abcCE:f:F:h:in:N:oOp:RsS:t:T:U:vwWxX:Z:",
while ((c = getopt_long(argc, argv, "abcCE:f:F:h:in:N:oOp:RsS:t:T:U:vwWxZ:",
long_options, &optindex)) != -1)
{
switch (c)