summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-05-03 23:39:53 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-05-03 23:39:53 +0000
commit4529b70b4ca28e6f2120a834c88b3ee2bc2e43f5 (patch)
tree26c2d88d7d8ccf6961373455b68e1e087c211c7b /sftp.c
parent3524d697374a37d39e971d96c33080c307304820 (diff)
- mouring@cvs.openbsd.org 2001/05/03 23:09:53
[misc.c misc.h scp.c sftp.c] Move colon() and cleanhost() to misc.c where I should I have put it in the first place
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sftp.c b/sftp.c
index 8c887fbcf..895e0e125 100644
--- a/sftp.c
+++ b/sftp.c
@@ -24,7 +24,7 @@
24 24
25#include "includes.h" 25#include "includes.h"
26 26
27RCSID("$OpenBSD: sftp.c,v 1.15 2001/04/16 02:31:44 mouring Exp $"); 27RCSID("$OpenBSD: sftp.c,v 1.16 2001/05/03 23:09:53 mouring Exp $");
28 28
29/* XXX: commandline mode */ 29/* XXX: commandline mode */
30/* XXX: short-form remote directory listings (like 'ls -C') */ 30/* XXX: short-form remote directory listings (like 'ls -C') */
@@ -33,6 +33,7 @@ RCSID("$OpenBSD: sftp.c,v 1.15 2001/04/16 02:31:44 mouring Exp $");
33#include "xmalloc.h" 33#include "xmalloc.h"
34#include "log.h" 34#include "log.h"
35#include "pathnames.h" 35#include "pathnames.h"
36#include "misc.h"
36 37
37#include "sftp.h" 38#include "sftp.h"
38#include "sftp-common.h" 39#include "sftp-common.h"
@@ -45,8 +46,6 @@ extern char *__progname;
45char *__progname; 46char *__progname;
46#endif 47#endif
47 48
48#include "scp-common.h"
49
50int use_ssh1 = 0; 49int use_ssh1 = 0;
51char *ssh_program = _PATH_SSH_PROGRAM; 50char *ssh_program = _PATH_SSH_PROGRAM;
52char *sftp_server = NULL; 51char *sftp_server = NULL;