mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 05:12:18 +01:00
Our openssh package ships sftp-server as /usr/lib/ssh/sftp-server and not /usr/libexec/sftp-server as is the dropbear default.
12 lines
359 B
Diff
12 lines
359 B
Diff
--- a/options.h
|
|
+++ b/options.h
|
|
@@ -289,7 +289,7 @@
|
|
* OpenSSH), set the path below. If the path isn't defined, sftp will not
|
|
* be enabled */
|
|
#ifndef SFTPSERVER_PATH
|
|
-#define SFTPSERVER_PATH "/usr/libexec/sftp-server"
|
|
+#define SFTPSERVER_PATH "/usr/lib/ssh/sftp-server"
|
|
#endif
|
|
|
|
/* This is used by the scp binary when used as a client binary. If you're
|