Skip to content

Commit a1bb5e5

Browse files
committed
Sudo 1.9.15p3
--HG-- branch : 1.9
1 parent f149dd2 commit a1bb5e5

File tree

3 files changed

+35
-10
lines changed

3 files changed

+35
-10
lines changed

NEWS

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
What's new in Sudo 1.9.15p3
2+
3+
* Always disable core dumps when sudo sends itself a fatal signal.
4+
Fixes a problem where sudo could potentially dump core dump when
5+
it re-sends the fatal signal to itself. This is only an issue
6+
if the command received a signal that would normally result in
7+
a core dump but the command did not actually dump core.
8+
9+
* Fixed a bug matching a command with a relative path name when
10+
the sudoers rule uses shell globbing rules for the path name.
11+
Bug #1062.
12+
13+
* Permit visudo to be run even if the local host name is not set.
14+
GitHub issue #332.
15+
16+
* Fixed an editing error introduced in sudo 1.9.15 that could
17+
prevent sudoreplay from replaying sessions correctly.
18+
GitHub issue #334.
19+
20+
* Fixed a bug introduced in sudo 1.9.15 where "sudo -l > /dev/null"
21+
could hang on Linux systems. GitHub issue #335.
22+
23+
* Fixed a bug introduced in sudo 1.9.15 where Solaris privileges
24+
specified in sudoers were not applied to the command being run.
25+
126
What's new in Sudo 1.9.15p2
227

328
* Fixed a bug on BSD systems where sudo would not restore the

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.15p2.
3+
# Generated by GNU Autoconf 2.72c for sudo 1.9.15p3.
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.15p2'
618-
PACKAGE_STRING='sudo 1.9.15p2'
617+
PACKAGE_VERSION='1.9.15p3'
618+
PACKAGE_STRING='sudo 1.9.15p3'
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.15p2 to adapt to many kinds of systems.
1645+
'configure' configures sudo 1.9.15p3 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.15p2:";;
1711+
short | recursive ) echo "Configuration of sudo 1.9.15p3:";;
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.15p2
2006+
sudo configure 1.9.15p3
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.15p2, which was
2826+
It was created by sudo $as_me 1.9.15p3, 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.15p2, which was
36674+
This file was extended by sudo $as_me 1.9.15p3, 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.15p2
36742+
sudo config.status 1.9.15p3
3674336743
configured by $0, generated by GNU Autoconf 2.72c,
3674436744
with options \\"\$ac_cs_config\\"
3674536745

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