Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
24 lines
742 B
Diff
24 lines
742 B
Diff
diff --git a/pathnames.h b/pathnames.h
|
|
index cb44caa4..354fdf05 100644
|
|
--- a/pathnames.h
|
|
+++ b/pathnames.h
|
|
@@ -124,7 +124,7 @@
|
|
|
|
/* Location of ssh-keysign for hostbased authentication */
|
|
#ifndef _PATH_SSH_KEY_SIGN
|
|
-#define _PATH_SSH_KEY_SIGN "/usr/libexec/ssh-keysign"
|
|
+#define _PATH_SSH_KEY_SIGN "ssh-keysign"
|
|
#endif
|
|
|
|
/* Location of ssh-pkcs11-helper to support keys in tokens */
|
|
--- a/sshconnect2.c
|
|
+++ b/sshconnect2.c
|
|
@@ -2021,7 +2021,7 @@
|
|
|
|
debug3_f("[child] pid=%ld, exec %s",
|
|
(long)getpid(), _PATH_SSH_KEY_SIGN);
|
|
- execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *)NULL);
|
|
+ execlp(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *)NULL);
|
|
fatal_f("exec(%s): %s", _PATH_SSH_KEY_SIGN,
|
|
strerror(errno));
|
|
}
|