From: Todd C. Miller Date: Tue, 20 Oct 1998 18:00:17 +0000 (+0000) Subject: typo in --with-editor bits X-Git-Tag: SUDO_1_5_7~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c28e57f8b7e67593c93bb780af5cb2106f03a10;p=sudo typo in --with-editor bits --- diff --git a/configure.in b/configure.in index 0a6f917af..25c14ca6d 100644 --- a/configure.in +++ b/configure.in @@ -575,7 +575,7 @@ AC_ARG_WITH(exempt, [ --with-exempt=group no passwd needed for users in thi esac]) AC_MSG_CHECKING(for editor that visudo should use) -AC_ARG_WITH(editor, [ --with-editor Default editor for visudo (defaults to vi)], +AC_ARG_WITH(editor, [ --with-editor=path Default editor for visudo (defaults to vi)], [case $with_editor in yes) echo "Must give --with-editor an argument." exit 1 @@ -583,7 +583,7 @@ AC_ARG_WITH(editor, [ --with-editor Default editor for visudo (defaul no) echo "Sorry, --without-editor not supported." exit 1 ;; - *) AC_DEFINE_UNQUOTED(TRIES_FOR_PASSWORD, $with_editor) + *) AC_DEFINE_UNQUOTED(EDITOR, $with_editor) AC_MSG_RESULT([$with_editor]) ;; esac], [AC_DEFINE(EDITOR, _PATH_VI) AC_MSG_RESULT(vi)])