summaryrefslogtreecommitdiffstats
path: root/sshconnect2.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-05-31 05:20:07 +0200
committerDarren Tucker <dtucker@dtucker.net>2019-06-07 16:20:01 +0200
commitc586d2d3129265ea64b12960c379d634bccb6535 (patch)
treedb488c43d6ca149a38d52a281d5924fa782b0699 /sshconnect2.c
parentupstream: Make the standard output messages of both methods of (diff)
downloadopenssh-c586d2d3129265ea64b12960c379d634bccb6535.tar.xz
openssh-c586d2d3129265ea64b12960c379d634bccb6535.zip
upstream: fix ssh-keysign fd handling problem introduced in r1.304
caused by a typo (STDIN_FILENO vs STDERR_FILENO) OpenBSD-Commit-ID: 57a0b4be7bef23963afe24150e24bf014fdd9cb0
Diffstat (limited to '')
-rw-r--r--sshconnect2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index d2b5d4c04..0d2523ca1 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect2.c,v 1.304 2019/05/15 04:43:31 deraadt Exp $ */
+/* $OpenBSD: sshconnect2.c,v 1.305 2019/05/31 03:20:07 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Damien Miller. All rights reserved.
@@ -1886,7 +1886,7 @@ ssh_keysign(struct ssh *ssh, struct sshkey *key, u_char **sigp, size_t *lenp,
}
close(from[1]);
close(to[0]);
- sock = STDIN_FILENO + 1;
+ sock = STDERR_FILENO + 1;
if ((b = sshbuf_new()) == NULL)
fatal("%s: sshbuf_new failed", __func__);