diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2018-07-09 21:03:31 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2018-07-09 21:03:31 +0000 |
commit | b9195967dfdd0951747cc53f9b74c75e6e3d2300 (patch) | |
tree | f3c102ea21d758db8df79f9634da25b3a7ea0b6a /usr.bin/ssh/packet.c | |
parent | 10e296d284c9b6414860dba3da3625a54fb7d09c (diff) |
client: switch to sshbuf API; ok djm@
Diffstat (limited to 'usr.bin/ssh/packet.c')
-rw-r--r-- | usr.bin/ssh/packet.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/ssh/packet.c b/usr.bin/ssh/packet.c index adf75c643b9..eab5a58c325 100644 --- a/usr.bin/ssh/packet.c +++ b/usr.bin/ssh/packet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.275 2018/07/09 13:37:10 sf Exp $ */ +/* $OpenBSD: packet.c,v 1.276 2018/07/09 21:03:30 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -57,9 +57,6 @@ #include <zlib.h> -#include "buffer.h" /* typedefs XXX */ -#include "key.h" /* typedefs XXX */ - #include "xmalloc.h" #include "crc32.h" #include "compat.h" |