summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2015-01-14 13:54:14 +0000
committerDamien Miller <djm@cvs.openbsd.org>2015-01-14 13:54:14 +0000
commit7a643f5da9eda302149703857ff649efd4d6d37b (patch)
tree5fe1531c02ed44f7d7adf6b844a7b09dd6038494 /usr.bin/ssh/sftp.c
parenta47452f8a56f6d1b663b82923e20b25e119bac58 (diff)
update sftp client and server to new buffer API.
pretty much just mechanical changes; with & ok markus
Diffstat (limited to 'usr.bin/ssh/sftp.c')
-rw-r--r--usr.bin/ssh/sftp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c
index 12d30d6239b..e378f187009 100644
--- a/usr.bin/ssh/sftp.c
+++ b/usr.bin/ssh/sftp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp.c,v 1.168 2014/11/26 18:34:51 millert Exp $ */
+/* $OpenBSD: sftp.c,v 1.169 2015/01/14 13:54:13 djm Exp $ */
/*
* Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
*
@@ -44,7 +44,8 @@
#include "misc.h"
#include "sftp.h"
-#include "buffer.h"
+#include "ssherr.h"
+#include "sshbuf.h"
#include "sftp-common.h"
#include "sftp-client.h"