summaryrefslogtreecommitdiff
path: root/sshconnect2.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-11-15 02:37:24 +0000
committerDamien Miller <djm@mindrot.org>2019-11-15 13:41:40 +1100
commit49dc9fa928d77807c53bdc2898db7fb515fe5eb3 (patch)
treec3bf023584f5564abc940026300ba4e48d8241a5 /sshconnect2.c
parent22a82712e89bf17c27427aeba15795fb4011a0c2 (diff)
upstream: close the "touch your security key" notifier on the error
path too OpenBSD-Commit-ID: c7628bf80505c1aefbb1de7abc8bb5ee51826829
Diffstat (limited to 'sshconnect2.c')
-rw-r--r--sshconnect2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index 85c1c231a..d658ed07b 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect2.c,v 1.313 2019/11/13 04:47:52 deraadt Exp $ */
+/* $OpenBSD: sshconnect2.c,v 1.314 2019/11/15 02:37:24 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Damien Miller. All rights reserved.
@@ -1197,7 +1197,6 @@ identity_sign(struct identity *id, u_char **sigp, size_t *lenp,
debug("%s: sshkey_sign: %s", __func__, ssh_err(r));
goto out;
}
- notify_complete(notifier);
/*
* PKCS#11 tokens may not support all signature algorithms,
* so check what we get back.
@@ -1209,6 +1208,7 @@ identity_sign(struct identity *id, u_char **sigp, size_t *lenp,
/* success */
r = 0;
out:
+ notify_complete(notifier);
sshkey_free(prv);
return r;
}