diff options
author | markus@openbsd.org <markus@openbsd.org> | 2018-07-09 23:35:50 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-07-10 07:27:43 +0200 |
commit | c7d39ac8dc3587c5f05bdd5bcd098eb5c201c0c8 (patch) | |
tree | 28e4a7c9d114a3ab3c7710850e54b1a8c41f840e /auth-bsdauth.c | |
parent | upstream: sshd: switch config to sshbuf API; ok djm@ (diff) | |
download | openssh-c7d39ac8dc3587c5f05bdd5bcd098eb5c201c0c8.tar.xz openssh-c7d39ac8dc3587c5f05bdd5bcd098eb5c201c0c8.zip |
upstream: sshd: switch authentication to sshbuf API; ok djm@
OpenBSD-Commit-ID: 880aa06bce4b140781e836bb56bec34873290641
Diffstat (limited to 'auth-bsdauth.c')
-rw-r--r-- | auth-bsdauth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-bsdauth.c b/auth-bsdauth.c index e00718f2e..4dc5045c2 100644 --- a/auth-bsdauth.c +++ b/auth-bsdauth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-bsdauth.c,v 1.14 2015/10/20 23:24:25 mmcc Exp $ */ +/* $OpenBSD: auth-bsdauth.c,v 1.15 2018/07/09 21:35:50 markus Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. * @@ -33,11 +33,11 @@ #ifdef BSD_AUTH #include "xmalloc.h" -#include "key.h" +#include "sshkey.h" +#include "sshbuf.h" #include "hostfile.h" #include "auth.h" #include "log.h" -#include "buffer.h" #ifdef GSSAPI #include "ssh-gss.h" #endif |