summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--authfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/authfd.c b/authfd.c
index e65bcab0c..9ed5d2f18 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfd.c,v 1.95 2015/03/24 20:09:11 markus Exp $ */ 1/* $OpenBSD: authfd.c,v 1.96 2015/03/25 19:21:48 markus Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -469,7 +469,7 @@ ssh_agent_sign(int sock, struct sshkey *key,
469 } 469 }
470 if ((r = sshbuf_get_string(msg, sigp, &len)) != 0) 470 if ((r = sshbuf_get_string(msg, sigp, &len)) != 0)
471 goto out; 471 goto out;
472 if (*lenp != NULL) 472 if (lenp != NULL)
473 *lenp = len; 473 *lenp = len;
474 r = 0; 474 r = 0;
475 out: 475 out: