aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2019-03-25 21:16:51 -0300
committerSilvio Rhatto <rhatto@riseup.net>2019-03-25 21:16:51 -0300
commitacee5c1891fc0a6dec6183fadad52e0d136c95f4 (patch)
treed3d9abf30970524c7db37617c553d4c711a407e5
parent454f5f152c9db76d3d43ce88ac11b81025564a08 (diff)
downloadutils-ssh-acee5c1891fc0a6dec6183fadad52e0d136c95f4.tar.gz
utils-ssh-acee5c1891fc0a6dec6183fadad52e0d136c95f4.tar.bz2
Oops
-rwxr-xr-xssh-agent-loadkey-menu2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh-agent-loadkey-menu b/ssh-agent-loadkey-menu
index 7640032..29a8e6d 100755
--- a/ssh-agent-loadkey-menu
+++ b/ssh-agent-loadkey-menu
@@ -64,7 +64,7 @@ function __load {
# Check if the selected option has a custom procedure (monkeysphere, keyringer, etc)
if [ -x "$KEY.askpass" ]; then
# SSH-ADD(1) says: "Note that on some machines it may be necessary to redirect the input from /dev/null to make this work".
- SSH_ASKPASS="$KEYS.askpass" ssh-add $KEY < /dev/null
+ SSH_ASKPASS="$KEY.askpass" ssh-add $KEY < /dev/null
else
ssh-add $KEY
fi