[openssh-commits] [openssh] 01/01: fix SIGWINCH delivery of Solaris for mux sessions

git+noreply at mindrot.org git+noreply at mindrot.org
Fri Jul 19 13:22:19 AEST 2019


This is an automated email from the git hooks/post-receive script.

djm pushed a commit to branch master
in repository openssh.

commit 01dddb231f23b4a7b616f9d33a0b9d937f9eaf0e
Author: Damien Miller <djm at mindrot.org>
Date:   Fri Jul 19 13:19:19 2019 +1000

    fix SIGWINCH delivery of Solaris for mux sessions
    
    Remove PRIV_PROC_SESSION which was limiting ability to send SIGWINCH
    signals to other sessions.  bz#3030; report and fix from Darren Moffat
---
 openbsd-compat/port-solaris.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/openbsd-compat/port-solaris.c b/openbsd-compat/port-solaris.c
index 0e89dc32..a7c92545 100644
--- a/openbsd-compat/port-solaris.c
+++ b/openbsd-compat/port-solaris.c
@@ -348,8 +348,7 @@ solaris_drop_privs_root_pinfo_net_exec(void)
 	    priv_delset(pset, PRIV_NET_ACCESS) != 0 ||
 #endif
 	    priv_delset(pset, PRIV_PROC_EXEC) != 0 ||
-	    priv_delset(pset, PRIV_PROC_INFO) != 0 ||
-	    priv_delset(pset, PRIV_PROC_SESSION) != 0)
+	    priv_delset(pset, PRIV_PROC_INFO) != 0)
 		fatal("priv_delset: %s", strerror(errno));
 
 	if (setppriv(PRIV_SET, PRIV_PERMITTED, pset) != 0 ||

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list