From d43e33b9821f2dd3b8e1724eda85ad3963412348 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 6 Nov 2012 11:00:22 -0500 Subject: [PATCH] The -a option should be #ifdef HAVE_BSD_AUTH_H, not -A. --HG-- branch : 1.8 --- src/parse_args.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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", -- 2.40.0