view sources/patches/busybox-ftpd.patch @ 1722:5a68c514f756 draft

Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
author Rob Landley <rob@landley.net>
date Sun, 11 Jan 2015 10:23:14 -0600
parents 2d264744ac3a
children
line wrap: on
line source

Busybox 1.19 let ftpd upload for non-root users. 1.20 broke that.

diff --git a/networking/ftpd.c b/networking/ftpd.c
index 33db964..761f239 100644
--- a/networking/ftpd.c
+++ b/networking/ftpd.c
@@ -1180,7 +1180,8 @@ int ftpd_main(int argc UNUSED_PARAM, char **argv)
 #endif
 
 	if (argv[optind]) {
-		xchroot(argv[optind]);
+		xchdir(argv[optind]);
+		if (!getpid()) xchroot(".");
 	}
 
 	//umask(077); - admin can set umask before starting us