summaryrefslogtreecommitdiffstats
path: root/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 01:16:59 +0100
committerDamien Miller <djm@mindrot.org>2006-03-15 01:16:59 +0100
commit03e2003a2336e576aa1f27eab4f0f5b0b582bddd (patch)
tree4c5977b3b668f0d94f75a5b9a9085c77b70f2174 /sftp.c
parent - stevesk@cvs.openbsd.org 2006/02/07 03:59:20 (diff)
downloadopenssh-03e2003a2336e576aa1f27eab4f0f5b0b582bddd.tar.xz
openssh-03e2003a2336e576aa1f27eab4f0f5b0b582bddd.zip
- stevesk@cvs.openbsd.org 2006/02/08 12:15:27
[auth.c clientloop.c includes.h misc.c monitor.c readpass.c] [session.c sftp.c ssh-agent.c ssh-keysign.c ssh.c sshconnect.c] [sshd.c sshpty.c] move #include <paths.h> out of includes.h; ok markus@
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sftp.c b/sftp.c
index a2e3f6aad..877632ec3 100644
--- a/sftp.c
+++ b/sftp.c
@@ -16,8 +16,11 @@
#include "includes.h"
-RCSID("$OpenBSD: sftp.c,v 1.70 2006/01/31 10:19:02 djm Exp $");
+RCSID("$OpenBSD: sftp.c,v 1.71 2006/02/08 12:15:27 stevesk Exp $");
+#ifdef HAVE_PATHS_H
+# include <paths.h>
+#endif
#ifdef USE_LIBEDIT
#include <histedit.h>
#else