From: Todd C. Miller Date: Wed, 19 Apr 2000 19:30:28 +0000 (+0000) Subject: Fix --with-badpri help line X-Git-Tag: SUDO_1_6_4~280 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=576ea0ed1717ca89e6a9005bd54f4a34ebb10cd8;p=sudo Fix --with-badpri help line --- diff --git a/configure b/configure index aed05127e..3bea1c43d 100755 --- a/configure +++ b/configure @@ -62,7 +62,7 @@ ac_help="$ac_help ac_help="$ac_help --with-goodpri syslog priority for commands (def is notice)" ac_help="$ac_help - --with-badpri syslog priority for failures (def is LOG_ALERT)" + --with-badpri syslog priority for failures (def is alert)" ac_help="$ac_help --with-logpath path to the sudo log file" ac_help="$ac_help diff --git a/configure.in b/configure.in index 935148184..e15627e94 100644 --- a/configure.in +++ b/configure.in @@ -392,7 +392,7 @@ AC_ARG_WITH(goodpri, [ --with-goodpri syslog priority for commands (de esac], [AC_DEFINE_UNQUOTED(PRI_SUCCESS, "notice") AC_MSG_RESULT("notice")]) AC_MSG_CHECKING(at which syslog priority to log failures) -AC_ARG_WITH(badpri, [ --with-badpri syslog priority for failures (def is LOG_ALERT)], +AC_ARG_WITH(badpri, [ --with-badpri syslog priority for failures (def is alert)], [case $with_badpri in yes) AC_MSG_ERROR(["must give --with-badpri an argument."]) ;;