summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-01-14 13:54:13 +0000
committerDamien Miller <djm@mindrot.org>2015-01-15 02:22:18 +1100
commit7d845f4a0b7ec97887be204c3760e44de8bf1f32 (patch)
treec7f7271203627c22594cc86381745acce479d250 /sftp.c
parent139ca81866ec1b219c717d17061e5e7ad1059e2a (diff)
upstream commit
update sftp client and server to new buffer API. pretty much just mechanical changes; with & ok markus
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sftp.c b/sftp.c
index 98a146ed4..eee472d08 100644
--- a/sftp.c
+++ b/sftp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp.c,v 1.168 2014/11/26 18:34:51 millert Exp $ */ 1/* $OpenBSD: sftp.c,v 1.169 2015/01/14 13:54:13 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -63,7 +63,8 @@ typedef void EditLine;
63#include "misc.h" 63#include "misc.h"
64 64
65#include "sftp.h" 65#include "sftp.h"
66#include "buffer.h" 66#include "ssherr.h"
67#include "sshbuf.h"
67#include "sftp-common.h" 68#include "sftp-common.h"
68#include "sftp-client.h" 69#include "sftp-client.h"
69 70