diff options
author | 2018-07-09 21:37:55 +0000 | |
---|---|---|
committer | 2018-07-09 21:37:55 +0000 | |
commit | 234e08ab7c89dfeb7e91f623d6deb31758d32825 (patch) | |
tree | 501832a9544b77ecf0d08d13bbfa0b38f5537b73 /usr.bin/ssh/gss-serv.c | |
parent | sshd: switch authentication to sshbuf API; ok djm@ (diff) | |
download | wireguard-openbsd-234e08ab7c89dfeb7e91f623d6deb31758d32825.tar.xz wireguard-openbsd-234e08ab7c89dfeb7e91f623d6deb31758d32825.zip |
sshd: switch GSSAPI to sshbuf API; ok djm@
Diffstat (limited to 'usr.bin/ssh/gss-serv.c')
-rw-r--r-- | usr.bin/ssh/gss-serv.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/ssh/gss-serv.c b/usr.bin/ssh/gss-serv.c index add350db382..b4f4208b526 100644 --- a/usr.bin/ssh/gss-serv.c +++ b/usr.bin/ssh/gss-serv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gss-serv.c,v 1.30 2017/06/24 06:34:38 djm Exp $ */ +/* $OpenBSD: gss-serv.c,v 1.31 2018/07/09 21:37:55 markus Exp $ */ /* * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved. @@ -32,8 +32,7 @@ #include <string.h> #include "xmalloc.h" -#include "buffer.h" -#include "key.h" +#include "sshkey.h" #include "hostfile.h" #include "auth.h" #include "log.h" |