|
|
@ -1,28 +1,19 @@ |
|
|
|
diff -uNr libssh-0.8.6/examples/ssh_server_fork.c libssh-0.8.6.mod/examples/ssh_server_fork.c
|
|
|
|
--- libssh-0.8.6/examples/ssh_server_fork.c 2018-12-24 09:35:54.000000000 +0200
|
|
|
|
+++ libssh-0.8.6.mod/examples/ssh_server_fork.c 2019-03-02 13:54:01.710902660 +0200
|
|
|
|
@@ -308,7 +308,7 @@
|
|
|
|
if (login_tty(cdata->pty_slave) != 0) { |
|
|
|
exit(1); |
|
|
|
} |
|
|
|
- execl("/bin/sh", "sh", mode, command, NULL);
|
|
|
|
+ execl("@TERMUX_PREFIX@/bin/sh", "sh", mode, command, NULL);
|
|
|
|
exit(0); |
|
|
|
default: |
|
|
|
close(cdata->pty_slave); |
|
|
|
@@ -347,7 +347,7 @@
|
|
|
|
close(out[1]); |
|
|
|
close(err[1]); |
|
|
|
/* exec the requested command. */ |
|
|
|
- execl("/bin/sh", "sh", "-c", command, NULL);
|
|
|
|
+ execl("@TERMUX_PREFIX@/bin/sh", "sh", "-c", command, NULL);
|
|
|
|
exit(0); |
|
|
|
} |
|
|
|
diff -uNr libssh-0.9.0/src/dh-gex.c libssh-0.9.0.mod/src/dh-gex.c
|
|
|
|
--- libssh-0.9.0/src/dh-gex.c 2019-06-27 11:37:37.000000000 +0300
|
|
|
|
+++ libssh-0.9.0.mod/src/dh-gex.c 2019-06-29 17:28:16.549587113 +0300
|
|
|
|
@@ -294,7 +294,7 @@
|
|
|
|
|
|
|
|
#ifdef WITH_SERVER |
|
|
|
|
|
|
|
diff -uNr libssh-0.8.6/src/options.c libssh-0.8.6.mod/src/options.c
|
|
|
|
--- libssh-0.8.6/src/options.c 2018-12-24 09:35:55.000000000 +0200
|
|
|
|
+++ libssh-0.8.6.mod/src/options.c 2019-03-02 13:55:07.926515301 +0200
|
|
|
|
@@ -622,7 +622,7 @@
|
|
|
|
-#define MODULI_FILE "/etc/ssh/moduli"
|
|
|
|
+#define MODULI_FILE "@TERMUX_PREFIX@/etc/ssh/moduli"
|
|
|
|
/* 2 "Safe" prime; (p-1)/2 is also prime. */ |
|
|
|
#define SAFE_PRIME 2 |
|
|
|
/* 0x04 Probabilistic Miller-Rabin primality tests. */ |
|
|
|
diff -uNr libssh-0.9.0/src/options.c libssh-0.9.0.mod/src/options.c
|
|
|
|
--- libssh-0.9.0/src/options.c 2019-06-27 11:34:16.000000000 +0300
|
|
|
|
+++ libssh-0.9.0.mod/src/options.c 2019-06-29 17:28:52.049933003 +0300
|
|
|
|
@@ -666,7 +666,7 @@
|
|
|
|
SAFE_FREE(session->opts.global_knownhosts); |
|
|
|
if (v == NULL) { |
|
|
|
session->opts.global_knownhosts = |
|
|
@ -31,16 +22,7 @@ diff -uNr libssh-0.8.6/src/options.c libssh-0.8.6.mod/src/options.c |
|
|
|
if (session->opts.global_knownhosts == NULL) { |
|
|
|
ssh_set_error_oom(session); |
|
|
|
return -1; |
|
|
|
@@ -1327,7 +1327,7 @@
|
|
|
|
goto out; |
|
|
|
} |
|
|
|
if (filename == NULL) { |
|
|
|
- r = ssh_config_parse_file(session, "/etc/ssh/ssh_config");
|
|
|
|
+ r = ssh_config_parse_file(session, "@TERMUX_PREFIX@/etc/ssh/ssh_config");
|
|
|
|
} |
|
|
|
|
|
|
|
out: |
|
|
|
@@ -1366,7 +1366,7 @@
|
|
|
|
@@ -1449,7 +1449,7 @@
|
|
|
|
session->opts.knownhosts = tmp; |
|
|
|
|
|
|
|
if (session->opts.global_knownhosts == NULL) { |
|
|
@ -49,15 +31,15 @@ diff -uNr libssh-0.8.6/src/options.c libssh-0.8.6.mod/src/options.c |
|
|
|
} else { |
|
|
|
tmp = ssh_path_expand_escape(session, session->opts.global_knownhosts); |
|
|
|
} |
|
|
|
diff -uNr libssh-0.8.6/src/socket.c libssh-0.8.6.mod/src/socket.c
|
|
|
|
--- libssh-0.8.6/src/socket.c 2018-12-10 15:05:43.000000000 +0200
|
|
|
|
+++ libssh-0.8.6.mod/src/socket.c 2019-03-02 13:54:24.269341523 +0200
|
|
|
|
@@ -805,7 +805,7 @@
|
|
|
|
* @param out output file descriptor |
|
|
|
*/ |
|
|
|
void ssh_execute_command(const char *command, socket_t in, socket_t out){ |
|
|
|
- const char *args[]={"/bin/sh","-c",command,NULL};
|
|
|
|
+ const char *args[]={"@TERMUX_PREFIX@/bin/sh","-c",command,NULL};
|
|
|
|
/* redirect in and out to stdin, stdout and stderr */ |
|
|
|
dup2(in, 0); |
|
|
|
dup2(out,1); |
|
|
|
diff -uNr libssh-0.9.0/src/socket.c libssh-0.9.0.mod/src/socket.c
|
|
|
|
--- libssh-0.9.0/src/socket.c 2019-06-27 11:34:16.000000000 +0300
|
|
|
|
+++ libssh-0.9.0.mod/src/socket.c 2019-06-29 17:26:21.278467080 +0300
|
|
|
|
@@ -838,7 +838,7 @@
|
|
|
|
void |
|
|
|
ssh_execute_command(const char *command, socket_t in, socket_t out) |
|
|
|
{ |
|
|
|
- const char *args[] = {"/bin/sh", "-c", command, NULL};
|
|
|
|
+ const char *args[] = {"@TERMUX_PREFIX@/bin/sh", "-c", command, NULL};
|
|
|
|
/* Prepare /dev/null socket for the stderr redirection */ |
|
|
|
int devnull = open("/dev/null", O_WRONLY); |
|
|
|
if (devnull == -1) { |
|
|
|