Skip to content

Commit

Permalink
upstream commit
Browse files Browse the repository at this point in the history
unbreak ssh_agent_sign (lenp vs *lenp)
  • Loading branch information
mfriedl authored and djmdjm committed Mar 27, 2015
1 parent 4daeb67 commit 5f57e77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions authfd.c
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
* Copyright (c) 1995 Tatu Ylonen <[email protected]>, Espoo, Finland
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 5f57e77

Please sign in to comment.