[git commit master] sed: on output file, set not only mode, but owner too

Denys Vlasenko vda.linux at googlemail.com
Fri Nov 13 08:09:07 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=5799248976c1227663c4c9b7758e64dee3d5185b
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 editors/sed.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/editors/sed.c b/editors/sed.c
index cc609c3..c1ee750 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -1340,10 +1340,10 @@ int sed_main(int argc UNUSED_PARAM, char **argv)
 				bb_perror_msg_and_die("can't create temp file %s", G.outname);
 			G.nonstdout = fdopen(nonstdoutfd, "w");
 
-			/* Set permissions of output file */
-
+			/* Set permissions/owner of output file */
 			fstat(fileno(file), &statbuf);
 			fchmod(nonstdoutfd, statbuf.st_mode);
+			fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid);
 			add_input_file(file);
 			process_files();
 			fclose(G.nonstdout);
-- 
1.6.3.3



More information about the busybox-cvs mailing list