diff options
author | 2019-01-19 21:31:32 +0000 | |
---|---|---|
committer | 2019-01-19 21:31:32 +0000 | |
commit | 8904d296d0abb7289322cfad76e1404fca98f494 (patch) | |
tree | 8f77cc3b1568fccba248b4d2692309b8cc4897b4 /usr.bin/ssh/auth.c | |
parent | Since there is no more exec()'ing, there is no need to (diff) | |
download | wireguard-openbsd-8904d296d0abb7289322cfad76e1404fca98f494.tar.xz wireguard-openbsd-8904d296d0abb7289322cfad76e1404fca98f494.zip |
begin landing remaining refactoring of packet parsing API, started
almost exactly six years ago.
This change stops including the old packet_* API by default and makes
each file that requires the old API include it explicitly. We will
commit file-by-file refactoring to remove the old API in consistent
steps.
with & ok markus@
Diffstat (limited to 'usr.bin/ssh/auth.c')
-rw-r--r-- | usr.bin/ssh/auth.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c index 72fc2e9cfe0..c7b9097b74a 100644 --- a/usr.bin/ssh/auth.c +++ b/usr.bin/ssh/auth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.c,v 1.135 2019/01/17 04:20:53 djm Exp $ */ +/* $OpenBSD: auth.c,v 1.136 2019/01/19 21:31:32 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -65,6 +65,9 @@ #include "compat.h" #include "channels.h" +#include "opacket.h" /* XXX */ +extern struct ssh *active_state; /* XXX */ + /* import */ extern ServerOptions options; extern int use_privsep; |