diff options
author | 2021-01-27 10:15:08 +0000 | |
---|---|---|
committer | 2021-01-27 10:15:08 +0000 | |
commit | 92f79b26e0c52f23c1adc565fd98e4b78318634a (patch) | |
tree | 79605e5bf6b32c83070b7f4953f1012133cc6b11 | |
parent | make ssh->kex->session_id a sshbuf instead of u_char*/size_t and (diff) | |
download | wireguard-openbsd-92f79b26e0c52f23c1adc565fd98e4b78318634a.tar.xz wireguard-openbsd-92f79b26e0c52f23c1adc565fd98e4b78318634a.zip |
this needs kex.h now
-rw-r--r-- | usr.bin/ssh/auth2-gss.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth2-gss.c b/usr.bin/ssh/auth2-gss.c index dfe29c09ccc..245c5d9bb10 100644 --- a/usr.bin/ssh/auth2-gss.c +++ b/usr.bin/ssh/auth2-gss.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth2-gss.c,v 1.31 2021/01/27 10:05:28 djm Exp $ */ +/* $OpenBSD: auth2-gss.c,v 1.32 2021/01/27 10:15:08 djm Exp $ */ /* * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved. @@ -39,6 +39,7 @@ #include "ssherr.h" #include "servconf.h" #include "packet.h" +#include "kex.h" #include "ssh-gss.h" #include "monitor_wrap.h" |