]> granicus.if.org Git - sudo/commitdiff
The -a option should be #ifdef HAVE_BSD_AUTH_H, not -A.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 6 Nov 2012 16:00:22 +0000 (11:00 -0500)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 6 Nov 2012 16:00:22 +0000 (11:00 -0500)
src/parse_args.c

index 28da429136304fc64adaac30e84853beecfcd72c..652850983d7ae23b23650b0db432a26acd78582e 100644 (file)
@@ -535,12 +535,12 @@ help(void)
     usage(0);
 
     lbuf_append(&lbuf, _("\nOptions:\n"));
-#ifdef HAVE_BSD_AUTH_H
     lbuf_append(&lbuf, "  -A            %s",
        _("use helper program for password prompting\n"));
-#endif
+#ifdef HAVE_BSD_AUTH_H
     lbuf_append(&lbuf, "  -a type       %s",
        _("use specified BSD authentication type\n"));
+#endif
     lbuf_append(&lbuf, "  -b            %s",
        _("run command in the background\n"));
     lbuf_append(&lbuf, "  -C fd         %s",