From: Todd C. Miller Date: Tue, 15 Jan 2013 19:50:08 +0000 (-0500) Subject: The -a option should be #ifdef HAVE_BSD_AUTH_H, not -A. X-Git-Tag: SUDO_1_7_10p4~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25e157a3b10989d8b5a73f2abe48850b5210e06a;p=sudo The -a option should be #ifdef HAVE_BSD_AUTH_H, not -A. --HG-- branch : 1.7 --- diff --git a/parse_args.c b/parse_args.c index 33412f978..394890a81 100644 --- a/parse_args.c +++ b/parse_args.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1993-1996, 1998-2010 Todd C. Miller + * Copyright (c) 1993-1996, 1998-2012 Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -391,12 +391,12 @@ help() usage(0); lbuf_append(&lbuf, "\nOptions:\n"); -#ifdef HAVE_BSD_AUTH_H lbuf_append(&lbuf, " -A use helper program for password prompting\n"); -#endif +#ifdef HAVE_BSD_AUTH_H lbuf_append(&lbuf, " -a type use specified BSD authentication type\n"); +#endif lbuf_append(&lbuf, " -b run command in the background\n"); lbuf_append(&lbuf,