From: Todd C. Miller Date: Fri, 6 Aug 2010 16:19:54 +0000 (-0400) Subject: Don't print getspwuid as an auth method. X-Git-Tag: SUDO_1_7_5~199 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61f63dadcc678a1aeef368fec9453097a3893e2c;p=sudo Don't print getspwuid as an auth method. --HG-- branch : 1.7 --- diff --git a/configure b/configure index 960060880..f6190623c 100755 --- a/configure +++ b/configure @@ -18410,7 +18410,7 @@ yes|maybe) ;; esac AUTH_OBJS=${AUTH_OBJS# } -_AUTH=`echo "$AUTH_OBJS" | sed 's/\.o//g'` +_AUTH=`echo "$AUTH_OBJS" | sed -e 's/\.o//g' -e 's/getspwuid *//'` { $as_echo "$as_me:${as_lineno-$LINENO}: using the following authentication methods: $_AUTH" >&5 $as_echo "$as_me: using the following authentication methods: $_AUTH" >&6;} diff --git a/configure.in b/configure.in index 4dfdf37f4..af6e7fb8f 100644 --- a/configure.in +++ b/configure.in @@ -2734,7 +2734,7 @@ yes|maybe) ;; esac AUTH_OBJS=${AUTH_OBJS# } -_AUTH=`echo "$AUTH_OBJS" | sed 's/\.o//g'` +_AUTH=`echo "$AUTH_OBJS" | sed -e 's/\.o//g' -e 's/getspwuid *//'` AC_MSG_NOTICE([using the following authentication methods: $_AUTH]) dnl