diff options
author | 2019-07-05 04:55:40 +0000 | |
---|---|---|
committer | 2019-07-05 04:55:40 +0000 | |
commit | a1ec2b370648a9a20261fda2775492e18d03841c (patch) | |
tree | ee6903eaff8541ad3b3dc4c47bbaa2c99ab7b588 /usr.bin/ssh/ssh-keygen.c | |
parent | make the pointer value argument name "v" instead of "value" (diff) | |
download | wireguard-openbsd-a1ec2b370648a9a20261fda2775492e18d03841c.tar.xz wireguard-openbsd-a1ec2b370648a9a20261fda2775492e18d03841c.zip |
add a local implementation of BSD realpath() for sftp-server use
ahead of OpenBSD's realpath changing to match POSIX;
ok deraadt@ (thanks for snaps testing)
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 19909d6da15..1c32516751c 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.333 2019/06/28 13:35:04 deraadt Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.334 2019/07/05 04:55:40 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -33,7 +33,6 @@ #include "xmalloc.h" #include "sshkey.h" #include "authfile.h" -#include "uuencode.h" #include "sshbuf.h" #include "pathnames.h" #include "log.h" |