]> granicus.if.org Git - sudo/commitdiff
add -V (version) flag
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 30 Aug 2009 14:50:51 +0000 (14:50 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 30 Aug 2009 14:50:51 +0000 (14:50 +0000)
sudoreplay.c

index ba0c6996c98c0a3e0cd78e2a76f034da48b6c459..3defe2e449cef894076b2967cf9aefe68e567423 100644 (file)
@@ -136,7 +136,7 @@ main(argc, argv)
     Argv = argv;
 
     /* XXX - timestamp option? (begin,end) */
-    while ((ch = getopt(argc, argv, "d:lm:p:s:t:u:w:")) != -1) {
+    while ((ch = getopt(argc, argv, "d:lm:p:s:t:u:V")) != -1) {
        switch(ch) {
        case 'd':
            session_dir = optarg;
@@ -165,6 +165,9 @@ main(argc, argv)
        case 'u':
            user = optarg;
            break;
+       case 'V':
+           (void) printf("%s version %s\n", getprogname(), PACKAGE_VERSION);
+           exit(0);
        default:
            usage();
            /* NOTREACHED */