diff --git a/INSTALL b/INSTALL index 340e04ee6..dd326c7d3 100644 --- a/INSTALL +++ b/INSTALL @@ -328,7 +328,7 @@ Optional features: --with-interfaces=no, --without-interfaces This option keeps sudo from trying to glean the ip address - from each attached Ethernet interface. It is only useful + from each attached network interface. It is only useful on a machine where sudo's interface reading support does not work, which may be the case on some SysV-based OS's using STREAMS. diff --git a/configure b/configure index f0a4f4849..984b96460 100755 --- a/configure +++ b/configure @@ -1809,7 +1809,7 @@ Optional Packages: --with-ldap-conf-file path to LDAP configuration file --with-ldap-secret-file path to LDAP secret password file --with-secure-path override the user's path with a built-in one - --without-interfaces don't try to read the ip addr of ether interfaces + --without-interfaces don't try to read the ip addr of network interfaces --with-askpass=PATH Fully qualified pathname of askpass helper --with-exampledir=DIR path to install sudo examples in --with-plugindir=DIR set directory to load plugins from diff --git a/configure.ac b/configure.ac index fdb6bc98f..5ddec69ae 100644 --- a/configure.ac +++ b/configure.ac @@ -1233,7 +1233,7 @@ AC_ARG_WITH(secure-path, [AS_HELP_STRING([--with-secure-path], [override the use esac], AC_MSG_RESULT(no)) AC_MSG_CHECKING(whether to get ip addresses from the network interfaces) -AC_ARG_WITH(interfaces, [AS_HELP_STRING([--without-interfaces], [don't try to read the ip addr of ether interfaces])], +AC_ARG_WITH(interfaces, [AS_HELP_STRING([--without-interfaces], [don't try to read the ip addr of network interfaces])], [case $with_interfaces in yes) AC_MSG_RESULT(yes) ;; diff --git a/etc/codespell.exclude b/etc/codespell.exclude index 4a84ee228..7814ba84f 100644 --- a/etc/codespell.exclude +++ b/etc/codespell.exclude @@ -1,3 +1,4 @@ + "You empty-headed animal food trough wiper!", * Returns true if any tags set in nt differ between ot and nt, else false. #define TAGS_CHANGED(ot, nt) \ ((TAG_SET((nt).follow) && (nt).follow != (ot).follow) || \ diff --git a/plugins/sudoers/env.c b/plugins/sudoers/env.c index b5214148e..a5b9f8487 100644 --- a/plugins/sudoers/env.c +++ b/plugins/sudoers/env.c @@ -872,7 +872,7 @@ env_update_didvar(const char *ep, unsigned int *didvar) } while (0) /* - * Build a new environment and ether clear potentially dangerous + * Build a new environment and either clear potentially dangerous * variables from the old one or start with a clean slate. * Also adds sudo-specific variables (SUDO_*). * Returns true on success or false on failure.