Skip to content

Commit 73cbe4e

Browse files
committed
Sudo 1.9.16p2
1 parent f8987fc commit 73cbe4e

File tree

3 files changed

+25
-10
lines changed

3 files changed

+25
-10
lines changed

NEWS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
What's new in Sudo 1.9.16p2
2+
3+
* Sudo now passes the terminal device number to the policy plugin
4+
even if it cannot resolve it to a path name. This allows sudo
5+
to run without warnings in a chroot jail when the terminal device
6+
files are not present. GitHub issue #421.
7+
8+
* On Linux systems, sudo will now attempt to use the symbolic links
9+
in /proc/self/fd/{0,1,2} when resolving the terminal device
10+
number. This can allow sudo to map a terminal device to its
11+
path name even when /dev/pts is not mounted in a chroot jail.
12+
13+
* Fixed compilation errors with gcc and clang in C23 mode.
14+
C23 no longer supports functions with unspecified arguments.
15+
116
What's new in Sudo 1.9.16p1
217

318
* Fixed the test for cross-compiling when checking for C99 snprintf().

configure

Lines changed: 9 additions & 9 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.16p1.
3+
# Generated by GNU Autoconf 2.72 for sudo 1.9.16p2.
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.16p1'
618-
PACKAGE_STRING='sudo 1.9.16p1'
617+
PACKAGE_VERSION='1.9.16p2'
618+
PACKAGE_STRING='sudo 1.9.16p2'
619619
PACKAGE_BUGREPORT='https://bugzilla.sudo.ws/'
620620
PACKAGE_URL=''
621621

@@ -1645,7 +1645,7 @@ if test "$ac_init_help" = "long"; then
16451645
# Omit some internal or obsolete options to make the list less imposing.
16461646
# This message is too long to be a string in the A/UX 3.1 sh.
16471647
cat <<_ACEOF
1648-
'configure' configures sudo 1.9.16p1 to adapt to many kinds of systems.
1648+
'configure' configures sudo 1.9.16p2 to adapt to many kinds of systems.
16491649

16501650
Usage: $0 [OPTION]... [VAR=VALUE]...
16511651

@@ -1711,7 +1711,7 @@ fi
17111711

17121712
if test -n "$ac_init_help"; then
17131713
case $ac_init_help in
1714-
short | recursive ) echo "Configuration of sudo 1.9.16p1:";;
1714+
short | recursive ) echo "Configuration of sudo 1.9.16p2:";;
17151715
esac
17161716
cat <<\_ACEOF
17171717

@@ -2006,7 +2006,7 @@ fi
20062006
test -n "$ac_init_help" && exit $ac_status
20072007
if $ac_init_version; then
20082008
cat <<\_ACEOF
2009-
sudo configure 1.9.16p1
2009+
sudo configure 1.9.16p2
20102010
generated by GNU Autoconf 2.72
20112011

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

2829-
It was created by sudo $as_me 1.9.16p1, which was
2829+
It was created by sudo $as_me 1.9.16p2, which was
28302830
generated by GNU Autoconf 2.72. Invocation command line was
28312831

28322832
$ $0$ac_configure_args_raw
@@ -36774,7 +36774,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3677436774
# report actual input values of CONFIG_FILES etc. instead of their
3677536775
# values after options handling.
3677636776
ac_log="
36777-
This file was extended by sudo $as_me 1.9.16p1, which was
36777+
This file was extended by sudo $as_me 1.9.16p2, which was
3677836778
generated by GNU Autoconf 2.72. Invocation command line was
3677936779

3678036780
CONFIG_FILES = $CONFIG_FILES
@@ -36842,7 +36842,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
3684236842
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3684336843
ac_cs_config='$ac_cs_config_escaped'
3684436844
ac_cs_version="\\
36845-
sudo config.status 1.9.16p1
36845+
sudo config.status 1.9.16p2
3684636846
configured by $0, generated by GNU Autoconf 2.72,
3684736847
with options \\"\$ac_cs_config\\"
3684836848

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.16p1], [https://bugzilla.sudo.ws/], [sudo])
21+
AC_INIT([sudo], [1.9.16p2], [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)