diff options
author | Darren Tucker <dtucker@zip.com.au> | 2007-12-02 12:48:40 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2007-12-02 12:48:40 +0100 |
commit | e566230cb029b78bcb0192098899d296c13361b2 (patch) | |
tree | dfd31e32d43dd817b3b0872ce2551f0c51a3e511 /scp.c | |
parent | - (dtucker) [configure.ac] Enable -fstack-protector-all on systems where (diff) | |
download | openssh-e566230cb029b78bcb0192098899d296c13361b2.tar.xz openssh-e566230cb029b78bcb0192098899d296c13361b2.zip |
- (dtucker) [scp.c] Update $OpenBSD tag missing from rev 1.175 and remove
leftover debug code.
Diffstat (limited to 'scp.c')
-rw-r--r-- | scp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: scp.c,v 1.160 2007/08/06 19:16:06 sobrado Exp $ */ +/* $OpenBSD: scp.c,v 1.161 2007/10/24 03:44:02 djm Exp $ */ /* * scp - secure remote copy. This is basically patched BSD rcp which * uses ssh to do the data transfer (instead of using rcmd). @@ -132,7 +132,7 @@ int verbose_mode = 0; int showprogress = 1; /* This is the program to execute for the secured connection. ("ssh" or -S) */ -char *ssh_program = "/home/djm/bin/ssh"; +char *ssh_program = _PATH_SSH_PROGRAM; /* This is used to store the pid of ssh_program */ pid_t do_cmd_pid = -1; |