[openssh-commits] [openssh] 01/05: upstream commit
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Dec 4 15:15:09 AEDT 2015
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit d952162b3c158a8f23220587bb6c8fcda75da551
Author: djm at openbsd.org <djm at openbsd.org>
Date: Tue Dec 1 23:29:24 2015 +0000
upstream commit
basic pledge() for ssh-agent, more refinement needed
Upstream-ID: 5b5b03c88162fce549e45e1b6dd833f20bbb5e13
---
ssh-agent.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/ssh-agent.c b/ssh-agent.c
index a335ea3..3887933 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-agent.c,v 1.204 2015/07/08 20:24:02 markus Exp $ */
+/* $OpenBSD: ssh-agent.c,v 1.205 2015/12/01 23:29:24 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -1402,6 +1402,9 @@ skip:
signal(SIGTERM, cleanup_handler);
nalloc = 0;
+ if (pledge("stdio unix exec", NULL) != 0)
+ fatal("%s: pledge: %s", __progname, strerror(errno));
+
while (1) {
prepare_select(&readsetp, &writesetp, &max_fd, &nalloc, &tvp);
result = select(max_fd + 1, readsetp, writesetp, NULL, tvp);
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list