Mercurial > dropbear
comparison scp.c @ 1127:b803ad2b9f4c
Merge pull request #11 from nshopik/patch-2
Prepend DROPBEAR for scp.c
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 12 Jun 2015 22:57:48 +0800 |
parents | 2dee3eef5344 |
children | 0a1891e23b18 |
comparison
equal
deleted
inserted
replaced
1125:7cb1f49d89a8 | 1127:b803ad2b9f4c |
---|---|
94 | 94 |
95 /* This is set to zero if the progressmeter is not desired. */ | 95 /* This is set to zero if the progressmeter is not desired. */ |
96 int showprogress = 1; | 96 int showprogress = 1; |
97 | 97 |
98 /* This is the program to execute for the secured connection. ("ssh" or -S) */ | 98 /* This is the program to execute for the secured connection. ("ssh" or -S) */ |
99 char *ssh_program = _PATH_SSH_PROGRAM; | 99 char *ssh_program = DROPBEAR_PATH_SSH_PROGRAM; |
100 | 100 |
101 /* This is used to store the pid of ssh_program */ | 101 /* This is used to store the pid of ssh_program */ |
102 pid_t do_cmd_pid = -1; | 102 pid_t do_cmd_pid = -1; |
103 | 103 |
104 static void | 104 static void |