Skip to content

Commit 4e0de8d

Browse files
committed
Sudo 1.9.13p3
--HG-- branch : 1.9
1 parent f2b94c9 commit 4e0de8d

3 files changed

Lines changed: 26 additions & 10 deletions

File tree

NEWS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
What's new in Sudo 1.9.13p3
2+
3+
* Fixed a bug introduced in sudo 1.9.13 that caused a syntax error
4+
when "list" was used as a user or host name. GitHub issue #246.
5+
6+
* Fixed a bug that could cause sudo to hang when running a command
7+
in a pseudo-terminal when there is still input buffered after a
8+
command has exited.
9+
10+
* Fixed "sudo -U otheruser -l command". This is a regression in
11+
sudo 1.9.13. GitHub issue #248.
12+
13+
* Fixed "sudo -l command args" when matching a command in sudoers
14+
with command line arguments. This is a regression in sudo 1.9.13.
15+
GitHub issue #249.
16+
117
What's new in Sudo 1.9.13p2
218

319
* Fixed the --enable-static-sudoers option, broken in sudo 1.9.13.

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

@@ -1636,7 +1636,7 @@ if test "$ac_init_help" = "long"; then
16361636
# Omit some internal or obsolete options to make the list less imposing.
16371637
# This message is too long to be a string in the A/UX 3.1 sh.
16381638
cat <<_ACEOF
1639-
'configure' configures sudo 1.9.13p2 to adapt to many kinds of systems.
1639+
'configure' configures sudo 1.9.13p3 to adapt to many kinds of systems.
16401640

16411641
Usage: $0 [OPTION]... [VAR=VALUE]...
16421642

@@ -1702,7 +1702,7 @@ fi
17021702

17031703
if test -n "$ac_init_help"; then
17041704
case $ac_init_help in
1705-
short | recursive ) echo "Configuration of sudo 1.9.13p2:";;
1705+
short | recursive ) echo "Configuration of sudo 1.9.13p3:";;
17061706
esac
17071707
cat <<\_ACEOF
17081708

@@ -1993,7 +1993,7 @@ fi
19931993
test -n "$ac_init_help" && exit $ac_status
19941994
if $ac_init_version; then
19951995
cat <<\_ACEOF
1996-
sudo configure 1.9.13p2
1996+
sudo configure 1.9.13p3
19971997
generated by GNU Autoconf 2.72a
19981998

19991999
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -2671,7 +2671,7 @@ cat >config.log <<_ACEOF
26712671
This file contains any messages produced by compilers while
26722672
running configure, to aid debugging if configure makes a mistake.
26732673

2674-
It was created by sudo $as_me 1.9.13p2, which was
2674+
It was created by sudo $as_me 1.9.13p3, which was
26752675
generated by GNU Autoconf 2.72a. Invocation command line was
26762676

26772677
$ $0$ac_configure_args_raw
@@ -35996,7 +35996,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3599635996
# report actual input values of CONFIG_FILES etc. instead of their
3599735997
# values after options handling.
3599835998
ac_log="
35999-
This file was extended by sudo $as_me 1.9.13p2, which was
35999+
This file was extended by sudo $as_me 1.9.13p3, which was
3600036000
generated by GNU Autoconf 2.72a. Invocation command line was
3600136001

3600236002
CONFIG_FILES = $CONFIG_FILES
@@ -36064,7 +36064,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
3606436064
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3606536065
ac_cs_config='$ac_cs_config_escaped'
3606636066
ac_cs_version="\\
36067-
sudo config.status 1.9.13p2
36067+
sudo config.status 1.9.13p3
3606836068
configured by $0, generated by GNU Autoconf 2.72a,
3606936069
with options \\"\$ac_cs_config\\"
3607036070

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