Set verbose = 1 when -v option specified.
diff --git a/iptables-restore.c b/iptables-restore.c
index fe70aae..cda44a6 100644
--- a/iptables-restore.c
+++ b/iptables-restore.c
@@ -4,7 +4,7 @@
  *
  * This coude is distributed under the terms of GNU GPL
  *
- * $Id: iptables-restore.c,v 1.17 2001/10/21 14:11:54 laforge Exp $
+ * $Id: iptables-restore.c,v 1.18 2001/10/22 15:16:21 laforge Exp $
  */
 
 #include <getopt.h>
@@ -27,7 +27,7 @@
 static struct option options[] = {
 	{ "binary", 0, 0, 'b' },
 	{ "counters", 0, 0, 'c' },
-/*	{ "verbose", 1, 0, 'v' }, */
+	{ "verbose", 1, 0, 'v' },
 	{ "help", 0, 0, 'h' },
 	{ "noflush", 0, 0, 'n'},
 	{ "modprobe", 1, 0, 'M'},
@@ -122,6 +122,9 @@
 			case 'c':
 				counters = 1;
 				break;
+			case 'v':
+				verbose = 1;
+				break;
 			case 'h':
 				print_usage("iptables-restore",
 					    NETFILTER_VERSION);