diff options
author | 2002-05-23 19:24:30 +0000 | |
---|---|---|
committer | 2002-05-23 19:24:30 +0000 | |
commit | 44c8244ece9217d496fc443fa69111407c31d7d7 (patch) | |
tree | 0dd69a2ed4e0b02a6fa5d97badc5c2340a71e341 /usr.bin/ssh/authfile.c | |
parent | sync (diff) | |
download | wireguard-openbsd-44c8244ece9217d496fc443fa69111407c31d7d7.tar.xz wireguard-openbsd-44c8244ece9217d496fc443fa69111407c31d7d7.zip |
add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authentication
in protocol v2 (needs to access the hostkeys).
Diffstat (limited to 'usr.bin/ssh/authfile.c')
-rw-r--r-- | usr.bin/ssh/authfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index 337da595dda..f22a3d19bf4 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/authfile.c @@ -36,7 +36,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: authfile.c,v 1.48 2002/02/28 15:46:33 markus Exp $"); +RCSID("$OpenBSD: authfile.c,v 1.49 2002/05/23 19:24:30 markus Exp $"); #include <openssl/err.h> #include <openssl/evp.h> @@ -421,7 +421,7 @@ fail: return NULL; } -static Key * +Key * key_load_private_pem(int fd, int type, const char *passphrase, char **commentp) { |