Skip to content

Commit fc9369c

Browse files
committed
Sudo 1.9.15p5
--HG-- branch : 1.9
1 parent ada47ee commit fc9369c

File tree

3 files changed

+29
-10
lines changed

3 files changed

+29
-10
lines changed

NEWS

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
What's new in Sudo 1.9.15p5
2+
3+
* Fixed evaluation of the "lecture", "listpw", "verifypw", and
4+
"fdexec" sudoers Defaults settings when used without an explicit
5+
value. Previously, if specified without a value they were
6+
evaluated as boolean "false", even when the negation operator
7+
('!') was not present.
8+
9+
* Fixed a bug introduced in sudo 1.9.14 that prevented LDAP
10+
netgroup queries using the NETGROUP_BASE setting from being
11+
performed.
12+
13+
* Sudo will now transparently rename a user's lecture file from
14+
the older name-based path to the newer user-ID-based path.
15+
GitHub issue #342.
16+
17+
* Fixed a bug introduced in sudo 1.9.15 that could cause a memory
18+
allocation failure if sysconf(_SC_LOGIN_NAME_MAX) fails. Bug #1066.
19+
120
What's new in Sudo 1.9.15p4
221

322
* Fixed a bug introduced in sudo 1.9.15 that could prevent a user's

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.72c for sudo 1.9.15p4.
3+
# Generated by GNU Autoconf 2.72c for sudo 1.9.15p5.
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.15p4'
618-
PACKAGE_STRING='sudo 1.9.15p4'
617+
PACKAGE_VERSION='1.9.15p5'
618+
PACKAGE_STRING='sudo 1.9.15p5'
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.15p4 to adapt to many kinds of systems.
1645+
'configure' configures sudo 1.9.15p5 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.15p4:";;
1711+
short | recursive ) echo "Configuration of sudo 1.9.15p5:";;
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.15p4
2006+
sudo configure 1.9.15p5
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.15p4, which was
2826+
It was created by sudo $as_me 1.9.15p5, which was
28272827
generated by GNU Autoconf 2.72c. Invocation command line was
28282828

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

3667936679
CONFIG_FILES = $CONFIG_FILES
@@ -36741,7 +36741,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
3674136741
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3674236742
ac_cs_config='$ac_cs_config_escaped'
3674336743
ac_cs_version="\\
36744-
sudo config.status 1.9.15p4
36744+
sudo config.status 1.9.15p5
3674536745
configured by $0, generated by GNU Autoconf 2.72c,
3674636746
with options \\"\$ac_cs_config\\"
3674736747

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