utils: exit(2) on unsupported positional arguments on command line

Change-Id: Icc76cae2225ec4e664b950176dd861fa15712f59
diff --git a/utils/osmo-auc-gen.c b/utils/osmo-auc-gen.c
index ec9bad8..65cfa31 100644
--- a/utils/osmo-auc-gen.c
+++ b/utils/osmo-auc-gen.c
@@ -247,6 +247,11 @@
 		}
 	}
 
+	if (argc > optind) {
+		fprintf(stderr, "Unsupported positional arguments in command line\n");
+		exit(2);
+	}
+
 	if (!rand_is_set) {
 		rc = osmo_get_rand_id(_rand, 16);
 		if (rc < 0) {