From 25e157a3b10989d8b5a73f2abe48850b5210e06a Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 15 Jan 2013 14:50:08 -0500 Subject: [PATCH] The -a option should be #ifdef HAVE_BSD_AUTH_H, not -A. --HG-- branch : 1.7 --- parse_args.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, -- 2.40.0