[nat] Fix the vty option... use the right argument.
diff --git a/openbsc/src/nat/bsc_nat_vty.c b/openbsc/src/nat/bsc_nat_vty.c
index d8b6040..3abd586 100644
--- a/openbsc/src/nat/bsc_nat_vty.c
+++ b/openbsc/src/nat/bsc_nat_vty.c
@@ -325,7 +325,7 @@
 {
 	struct bsc_config *conf = vty->index;
 
-	if (strcmp("1", argv[1]) == 0)
+	if (strcmp("1", argv[0]) == 0)
 		conf->forbid_paging = 1;
 	else
 		conf->forbid_paging = 0;