1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00

Update security/sudo to 1.8.21p1

This commit is contained in:
Renato Botelho 2017-09-05 17:15:29 +00:00
parent 8e2733d414
commit c5beee7821
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=449304
3 changed files with 4 additions and 21 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= sudo
PORTVERSION= 1.8.21
PORTVERSION= 1.8.21p1
CATEGORIES= security
MASTER_SITES= SUDO

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1503887359
SHA256 (sudo-1.8.21.tar.gz) = 126e9214613e842e19a02658f060186fe6a5927948679d64895b17ed933bb523
SIZE (sudo-1.8.21.tar.gz) = 2973939
TIMESTAMP = 1504631639
SHA256 (sudo-1.8.21p1.tar.gz) = ee50d3a249a96b1c5c8d3d21380eb96c63c6e61a888b13e3c2b941b23ab7c808
SIZE (sudo-1.8.21p1.tar.gz) = 2975522

View File

@ -1,17 +0,0 @@
--- src/exec_nopty.c.orig 2017-08-28 20:07:24.296708000 -0700
+++ src/exec_nopty.c 2017-08-28 20:17:50.768102000 -0700
@@ -134,6 +134,14 @@ signal_cb_nopty(int signo, int what, void *v)
sudo_ev_loopexit(ec->evbase);
}
debug_return;
+#if defined(SIGINFO) && defined(__FreeBSD__)
+ /*
+ * FreeBSD's ^T (terminal STATUS) will send a kernel-generated SIGINFO
+ * to the controlling terminal's process group that should not be
+ * forwarded.
+ */
+ case SIGINFO:
+#endif
case SIGINT:
case SIGQUIT:
case SIGTSTP: