summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/scp.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2001-01-19 15:55:10 +0000
committermarkus <markus@openbsd.org>2001-01-19 15:55:10 +0000
commite810d18bdfa95d8f53b6d93b96ecc03eefc7550b (patch)
tree6a18b679fd9e18b99b22b7d8e1f905509c1b1351 /usr.bin/ssh/scp.c
parentAgain, increase the size. (diff)
downloadwireguard-openbsd-e810d18bdfa95d8f53b6d93b96ecc03eefc7550b.tar.xz
wireguard-openbsd-e810d18bdfa95d8f53b6d93b96ecc03eefc7550b.zip
move ssh1 definitions to ssh1.h, pathnames to pathnames.h
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r--usr.bin/ssh/scp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c
index 5e3f70e88e5..806115bfae2 100644
--- a/usr.bin/ssh/scp.c
+++ b/usr.bin/ssh/scp.c
@@ -75,12 +75,11 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: scp.c,v 1.49 2001/01/13 18:03:07 markus Exp $");
+RCSID("$OpenBSD: scp.c,v 1.50 2001/01/19 15:55:11 markus Exp $");
#include "ssh.h"
#include "xmalloc.h"
-
-#define _PATH_CP "cp"
+#include "pathnames.h"
/* For progressmeter() -- number of seconds before xfer considered "stalled" */
#define STALLTIME 5
@@ -114,7 +113,7 @@ int verbose_mode = 0;
int showprogress = 1;
/* This is the program to execute for the secured connection. ("ssh" or -S) */
-char *ssh_program = SSH_PROGRAM;
+char *ssh_program = _PATH_SSH_PROGRAM;
/* This is the list of arguments that scp passes to ssh */
struct {