Skip to content

Commit 2535c5a

Browse files
committed
Sudo 1.9.15p4
--HG-- branch : 1.9
1 parent 5f6e0a4 commit 2535c5a

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

NEWS

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
What's new in Sudo 1.9.15p4
2+
3+
* Fixed a bug introduced in sudo 1.9.15 that could prevent a user's
4+
privileges from being listed by "sudo -l" if the sudoers entry
5+
in /etc/nsswitch.conf contains "[SUCCESS=return]". This did not
6+
affect the ability to run commands via sudo. Bug #1063.
7+
18
What's new in Sudo 1.9.15p3
29

310
* Always disable core dumps when sudo sends itself a fatal signal.

configure

+9-9
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.72c for sudo 1.9.15p3.
3+
# Generated by GNU Autoconf 2.72c for sudo 1.9.15p4.
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.15p3'
618-
PACKAGE_STRING='sudo 1.9.15p3'
617+
PACKAGE_VERSION='1.9.15p4'
618+
PACKAGE_STRING='sudo 1.9.15p4'
619619
PACKAGE_BUGREPORT='https://bugzilla.sudo.ws/'
620620
PACKAGE_URL=''
621621

@@ -1642,7 +1642,7 @@ if test "$ac_init_help" = "long"; then
16421642
# Omit some internal or obsolete options to make the list less imposing.
16431643
# This message is too long to be a string in the A/UX 3.1 sh.
16441644
cat <<_ACEOF
1645-
'configure' configures sudo 1.9.15p3 to adapt to many kinds of systems.
1645+
'configure' configures sudo 1.9.15p4 to adapt to many kinds of systems.
16461646

16471647
Usage: $0 [OPTION]... [VAR=VALUE]...
16481648

@@ -1708,7 +1708,7 @@ fi
17081708

17091709
if test -n "$ac_init_help"; then
17101710
case $ac_init_help in
1711-
short | recursive ) echo "Configuration of sudo 1.9.15p3:";;
1711+
short | recursive ) echo "Configuration of sudo 1.9.15p4:";;
17121712
esac
17131713
cat <<\_ACEOF
17141714

@@ -2003,7 +2003,7 @@ fi
20032003
test -n "$ac_init_help" && exit $ac_status
20042004
if $ac_init_version; then
20052005
cat <<\_ACEOF
2006-
sudo configure 1.9.15p3
2006+
sudo configure 1.9.15p4
20072007
generated by GNU Autoconf 2.72c
20082008

20092009
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -2823,7 +2823,7 @@ cat >config.log <<_ACEOF
28232823
This file contains any messages produced by compilers while
28242824
running configure, to aid debugging if configure makes a mistake.
28252825

2826-
It was created by sudo $as_me 1.9.15p3, which was
2826+
It was created by sudo $as_me 1.9.15p4, which was
28272827
generated by GNU Autoconf 2.72c. Invocation command line was
28282828

28292829
$ $0$ac_configure_args_raw
@@ -36671,7 +36671,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3667136671
# report actual input values of CONFIG_FILES etc. instead of their
3667236672
# values after options handling.
3667336673
ac_log="
36674-
This file was extended by sudo $as_me 1.9.15p3, which was
36674+
This file was extended by sudo $as_me 1.9.15p4, which was
3667536675
generated by GNU Autoconf 2.72c. Invocation command line was
3667636676

3667736677
CONFIG_FILES = $CONFIG_FILES
@@ -36739,7 +36739,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
3673936739
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3674036740
ac_cs_config='$ac_cs_config_escaped'
3674136741
ac_cs_version="\\
36742-
sudo config.status 1.9.15p3
36742+
sudo config.status 1.9.15p4
3674336743
configured by $0, generated by GNU Autoconf 2.72c,
3674436744
with options \\"\$ac_cs_config\\"
3674536745

configure.ac

+1-1
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.15p3], [https://bugzilla.sudo.ws/], [sudo])
21+
AC_INIT([sudo], [1.9.15p4], [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)