From 29228100aad2580f164ec924233f2b19483ffb71 Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 10 Aug 2005 06:36:44 +0000 Subject: Add an option to tell what version of config(8) this is. --- usr.sbin/config/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'usr.sbin/config/main.c') diff --git a/usr.sbin/config/main.c b/usr.sbin/config/main.c index 70664a4..9699fa7 100644 --- a/usr.sbin/config/main.c +++ b/usr.sbin/config/main.c @@ -54,6 +54,7 @@ static const char rcsid[] = #include #include "y.tab.h" #include "config.h" +#include "configvers.h" #ifndef TRUE #define TRUE (1) @@ -95,8 +96,11 @@ main(int argc, char **argv) char *p; char xxx[MAXPATHLEN]; - while ((ch = getopt(argc, argv, "d:gp")) != -1) + while ((ch = getopt(argc, argv, "d:gpV")) != -1) switch (ch) { + case 'V': + printf("%d\n", CONFIGVERS); + exit(0); case 'd': if (*destdir == '\0') strlcpy(destdir, optarg, sizeof(destdir)); -- cgit v1.1