[openssh-commits] [openssh] 07/12: upstream commit
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Mar 27 12:04:08 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 5f57e77f91bf2230c09eca96eb5ecec39e5f2da6
Author: markus at openbsd.org <markus at openbsd.org>
Date: Wed Mar 25 19:21:48 2015 +0000
upstream commit
unbreak ssh_agent_sign (lenp vs *lenp)
---
authfd.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/authfd.c b/authfd.c
index e65bcab..9ed5d2f 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfd.c,v 1.95 2015/03/24 20:09:11 markus Exp $ */
+/* $OpenBSD: authfd.c,v 1.96 2015/03/25 19:21:48 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -469,7 +469,7 @@ ssh_agent_sign(int sock, struct sshkey *key,
}
if ((r = sshbuf_get_string(msg, sigp, &len)) != 0)
goto out;
- if (*lenp != NULL)
+ if (lenp != NULL)
*lenp = len;
r = 0;
out:
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list