Skip to content

Commit abc0baf

Browse files
committed
Sudo 1.9.16p1
1 parent 0f41cd7 commit abc0baf

File tree

3 files changed

+45
-12
lines changed

3 files changed

+45
-12
lines changed

NEWS

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
What's new in Sudo 1.9.16p1
2+
3+
* Fixed the test for cross-compiling when checking for C99 snprintf().
4+
The changes made to the test in sudo 1.9.16 resulted in a different
5+
problem. GitHub issue #386.
6+
7+
* Fixed the date used by the exit record in sudo-format log files.
8+
This was a regression introduced in sudo 1.9.16 and only affected
9+
file-based logs, not syslog. GitHub issue #405.
10+
11+
* Fixed the root cause of the "unable to find terminal name for
12+
device" message when running sudo on AIX when no terminal is
13+
present. In sudo 1.9.16 this was turned from a debug message
14+
into a warning. GitHub issue #408
15+
16+
* When a duplicate alias is found in the sudoers file, the warning
17+
message now includes the file and line number of the previous
18+
definition.
19+
20+
* Added support for the --with-secure-path-value=no configure
21+
option to allow packagers to ship the default sudoers file with
22+
the secure path line commented out.
23+
24+
* Sudo no longer sends mail when a user runs "sudo -nv" or "sudo -nl",
25+
even if "mail_badpass" or "mail_always" are set. Sudo already
26+
avoids logging to a file or syslog in this case. Bug #1072.
27+
128
What's new in Sudo 1.9.16
229

330
* Added the "cmddenial_message" sudoers option to provide additional

configure

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.72 for sudo 1.9.16.
3+
# Generated by GNU Autoconf 2.72 for sudo 1.9.16p1.
44
#
55
# Report bugs to <https://bugzilla.sudo.ws/>.
66
#
@@ -614,8 +614,8 @@ MAKEFLAGS=
614614
# Identity of this package.
615615
PACKAGE_NAME='sudo'
616616
PACKAGE_TARNAME='sudo'
617-
PACKAGE_VERSION='1.9.16'
618-
PACKAGE_STRING='sudo 1.9.16'
617+
PACKAGE_VERSION='1.9.16p1'
618+
PACKAGE_STRING='sudo 1.9.16p1'
619619
PACKAGE_BUGREPORT='https://bugzilla.sudo.ws/'
620620
PACKAGE_URL=''
621621

@@ -734,6 +734,7 @@ pam_login_service
734734
pam_session
735735
editor
736736
secure_path_status
737+
secure_path_config
737738
secure_path
738739
netsvc_conf
739740
nsswitch_conf
@@ -1644,7 +1645,7 @@ if test "$ac_init_help" = "long"; then
16441645
# Omit some internal or obsolete options to make the list less imposing.
16451646
# This message is too long to be a string in the A/UX 3.1 sh.
16461647
cat <<_ACEOF
1647-
'configure' configures sudo 1.9.16 to adapt to many kinds of systems.
1648+
'configure' configures sudo 1.9.16p1 to adapt to many kinds of systems.
16481649

16491650
Usage: $0 [OPTION]... [VAR=VALUE]...
16501651

@@ -1710,7 +1711,7 @@ fi
17101711

17111712
if test -n "$ac_init_help"; then
17121713
case $ac_init_help in
1713-
short | recursive ) echo "Configuration of sudo 1.9.16:";;
1714+
short | recursive ) echo "Configuration of sudo 1.9.16p1:";;
17141715
esac
17151716
cat <<\_ACEOF
17161717

@@ -1885,7 +1886,8 @@ Optional Packages:
18851886
--with-ldap-conf-file path to LDAP configuration file
18861887
--with-ldap-secret-file path to LDAP secret password file
18871888
--with-secure-path-value
1888-
value of secure_path in the default sudoers file
1889+
value of secure_path in the default sudoers file, or
1890+
"no" to comment out by default
18891891
--with-secure-path override the user's path with a built-in one
18901892
--without-interfaces don't try to read the ip addr of network interfaces
18911893
--with-askpass=PATH Fully qualified pathname of askpass helper
@@ -2004,7 +2006,7 @@ fi
20042006
test -n "$ac_init_help" && exit $ac_status
20052007
if $ac_init_version; then
20062008
cat <<\_ACEOF
2007-
sudo configure 1.9.16
2009+
sudo configure 1.9.16p1
20082010
generated by GNU Autoconf 2.72
20092011

20102012
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -2824,7 +2826,7 @@ cat >config.log <<_ACEOF
28242826
This file contains any messages produced by compilers while
28252827
running configure, to aid debugging if configure makes a mistake.
28262828

2827-
It was created by sudo $as_me 1.9.16, which was
2829+
It was created by sudo $as_me 1.9.16p1, which was
28282830
generated by GNU Autoconf 2.72. Invocation command line was
28292831

28302832
$ $0$ac_configure_args_raw
@@ -3685,6 +3687,7 @@ sudoers_path='$(sysconfdir)/sudoers'
36853687

36863688

36873689

3690+
36883691

36893692

36903693
#
@@ -3733,6 +3736,7 @@ sesh_file="$libexecdir/sudo/sesh"
37333736
visudo="$sbindir/visudo"
37343737
nsswitch_conf=/etc/nsswitch.conf
37353738
secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
3739+
secure_path_config=
37363740
secure_path_status="disabled"
37373741
pam_session=on
37383742
pam_login_service=sudo
@@ -6314,7 +6318,9 @@ EOF
63146318
if test ${with_secure_path_value+y}
63156319
then :
63166320
withval=$with_secure_path_value; case $with_secure_path_value in
6317-
yes|no) as_fn_error $? "must give --secure-path-value an argument." "$LINENO" 5
6321+
yes) as_fn_error $? "must give --with-secure-path-value an argument." "$LINENO" 5
6322+
;;
6323+
no) secure_path_config="# "
63186324
;;
63196325
*) secure_path="$with_secure_path_value"
63206326
;;
@@ -36768,7 +36774,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3676836774
# report actual input values of CONFIG_FILES etc. instead of their
3676936775
# values after options handling.
3677036776
ac_log="
36771-
This file was extended by sudo $as_me 1.9.16, which was
36777+
This file was extended by sudo $as_me 1.9.16p1, which was
3677236778
generated by GNU Autoconf 2.72. Invocation command line was
3677336779

3677436780
CONFIG_FILES = $CONFIG_FILES
@@ -36836,7 +36842,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
3683636842
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3683736843
ac_cs_config='$ac_cs_config_escaped'
3683836844
ac_cs_version="\\
36839-
sudo config.status 1.9.16
36845+
sudo config.status 1.9.16p1
3684036846
configured by $0, generated by GNU Autoconf 2.72,
3684136847
with options \\"\$ac_cs_config\\"
3684236848

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dnl ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1818
dnl OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1919
dnl
2020
AC_PREREQ([2.69])
21-
AC_INIT([sudo], [1.9.16], [https://bugzilla.sudo.ws/], [sudo])
21+
AC_INIT([sudo], [1.9.16p1], [https://bugzilla.sudo.ws/], [sudo])
2222
AC_CONFIG_HEADERS([config.h pathnames.h])
2323
AC_CONFIG_SRCDIR([src/sudo.c])
2424
AC_CONFIG_AUX_DIR([scripts])

0 commit comments

Comments
 (0)