From: Marc Boucher Date: Thu, 6 Dec 2001 15:05:48 +0000 (+0000) Subject: Added -d and -t short options to getopt_long() call. X-Git-Tag: v1.2.5~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=163ad7801e93e4d8d3308741d34bcc1ee695d87b;p=thirdparty%2Fiptables.git Added -d and -t short options to getopt_long() call. --- diff --git a/iptables-save.c b/iptables-save.c index c25e636c..e57cd7cc 100644 --- a/iptables-save.c +++ b/iptables-save.c @@ -320,7 +320,7 @@ int main(int argc, char *argv[]) init_extensions(); #endif - while ((c = getopt_long(argc, argv, "bc", options, NULL)) != -1) { + while ((c = getopt_long(argc, argv, "bcdt:", options, NULL)) != -1) { switch (c) { case 'b': binary = 1;