From: Todd C. Miller Date: Tue, 6 Nov 2012 16:00:22 +0000 (-0500) Subject: The -a option should be #ifdef HAVE_BSD_AUTH_H, not -A. X-Git-Tag: SUDO_1_8_7~1^2~361 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e6207003b191661d55df1ed32f7ff8c5eadb5dac;p=sudo The -a option should be #ifdef HAVE_BSD_AUTH_H, not -A. --- diff --git a/src/parse_args.c b/src/parse_args.c index 28da42913..652850983 100644 --- a/src/parse_args.c +++ b/src/parse_args.c @@ -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",