Skip to content

Commit cc7ef61

Browse files
committed
Sudo 1.8.31p1
--HG-- branch : 1.8
1 parent a6629d6 commit cc7ef61

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

NEWS

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
What's new in Sudo 1.8.31p1
2+
3+
* Sudo once again ignores a failure to restore the RLIMIT_CORE
4+
resource limit, as it did prior to version 1.8.29. Linux
5+
containers don't allow RLIMIT_CORE to be set back to RLIM_INFINITY
6+
if we set the limit to zero, even for root, which resulted in a
7+
warning from sudo.
8+
19
What's new in Sudo 1.8.31
210

311
* Fixed CVE-2019-18634, a buffer overflow when the "pwfeedback"

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.69 for sudo 1.8.31.
3+
# Generated by GNU Autoconf 2.69 for sudo 1.8.31p1.
44
#
55
# Report bugs to <https://bugzilla.sudo.ws/>.
66
#
@@ -590,8 +590,8 @@ MAKEFLAGS=
590590
# Identity of this package.
591591
PACKAGE_NAME='sudo'
592592
PACKAGE_TARNAME='sudo'
593-
PACKAGE_VERSION='1.8.31'
594-
PACKAGE_STRING='sudo 1.8.31'
593+
PACKAGE_VERSION='1.8.31p1'
594+
PACKAGE_STRING='sudo 1.8.31p1'
595595
PACKAGE_BUGREPORT='https://bugzilla.sudo.ws/'
596596
PACKAGE_URL=''
597597

@@ -1544,7 +1544,7 @@ if test "$ac_init_help" = "long"; then
15441544
# Omit some internal or obsolete options to make the list less imposing.
15451545
# This message is too long to be a string in the A/UX 3.1 sh.
15461546
cat <<_ACEOF
1547-
\`configure' configures sudo 1.8.31 to adapt to many kinds of systems.
1547+
\`configure' configures sudo 1.8.31p1 to adapt to many kinds of systems.
15481548

15491549
Usage: $0 [OPTION]... [VAR=VALUE]...
15501550

@@ -1609,7 +1609,7 @@ fi
16091609

16101610
if test -n "$ac_init_help"; then
16111611
case $ac_init_help in
1612-
short | recursive ) echo "Configuration of sudo 1.8.31:";;
1612+
short | recursive ) echo "Configuration of sudo 1.8.31p1:";;
16131613
esac
16141614
cat <<\_ACEOF
16151615

@@ -1875,7 +1875,7 @@ fi
18751875
test -n "$ac_init_help" && exit $ac_status
18761876
if $ac_init_version; then
18771877
cat <<\_ACEOF
1878-
sudo configure 1.8.31
1878+
sudo configure 1.8.31p1
18791879
generated by GNU Autoconf 2.69
18801880

18811881
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2584,7 +2584,7 @@ cat >config.log <<_ACEOF
25842584
This file contains any messages produced by compilers while
25852585
running configure, to aid debugging if configure makes a mistake.
25862586

2587-
It was created by sudo $as_me 1.8.31, which was
2587+
It was created by sudo $as_me 1.8.31p1, which was
25882588
generated by GNU Autoconf 2.69. Invocation command line was
25892589

25902590
$ $0 $@
@@ -27543,7 +27543,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2754327543
# report actual input values of CONFIG_FILES etc. instead of their
2754427544
# values after options handling.
2754527545
ac_log="
27546-
This file was extended by sudo $as_me 1.8.31, which was
27546+
This file was extended by sudo $as_me 1.8.31p1, which was
2754727547
generated by GNU Autoconf 2.69. Invocation command line was
2754827548

2754927549
CONFIG_FILES = $CONFIG_FILES
@@ -27609,7 +27609,7 @@ _ACEOF
2760927609
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2761027610
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2761127611
ac_cs_version="\\
27612-
sudo config.status 1.8.31
27612+
sudo config.status 1.8.31p1
2761327613
configured by $0, generated by GNU Autoconf 2.69,
2761427614
with options \\"\$ac_cs_config\\"
2761527615

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.59])
21-
AC_INIT([sudo], [1.8.31], [https://bugzilla.sudo.ws/], [sudo])
21+
AC_INIT([sudo], [1.8.31p1], [https://bugzilla.sudo.ws/], [sudo])
2222
AC_CONFIG_HEADER([config.h pathnames.h])
2323
AC_CONFIG_SRCDIR([src/sudo.c])
2424
dnl

0 commit comments

Comments
 (0)