aports/main/dropbear/dropbear-options_sftp-server_path.patch
Eivind Uggedal e8f16803a0 main/dropbear: fix sftp-server location
Our openssh package ships sftp-server as
/usr/lib/ssh/sftp-server and not /usr/libexec/sftp-server
as is the dropbear default.
2015-09-08 11:14:04 +00:00

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