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_6p4~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d43e33b9821f2dd3b8e1724eda85ad3963412348;p=sudo The -a option should be #ifdef HAVE_BSD_AUTH_H, not -A. --HG-- branch : 1.8 --- diff --git a/src/parse_args.c b/src/parse_args.c index 1ee85a25b..532b41be6 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",