1 diff --git a/pathnames.h b/pathnames.h
2 index cb44caa4..354fdf05 100644
7 /* Location of ssh-keysign for hostbased authentication */
8 #ifndef _PATH_SSH_KEY_SIGN
9 -#define _PATH_SSH_KEY_SIGN "/usr/libexec/ssh-keysign"
10 +#define _PATH_SSH_KEY_SIGN "ssh-keysign"
13 /* Location of ssh-pkcs11-helper to support keys in tokens */
18 debug3_f("[child] pid=%ld, exec %s",
19 (long)getpid(), _PATH_SSH_KEY_SIGN);
20 - execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *)NULL);
21 + execlp(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *)NULL);
22 fatal_f("exec(%s): %s", _PATH_SSH_KEY_SIGN,