[BusyBox-cvs] CVS busybox/miscutils

CVS User andersen andersen at codepoet.org
Wed Oct 13 06:25:53 UTC 2004


Update of /var/cvs/busybox/miscutils
In directory nail:/tmp/cvs-serv26470/miscutils

Modified Files:
	devfsd.c 
Log Message:
Make certain clients of bb_make_directory default to honoring
the user's umask


--- /var/cvs/busybox/miscutils/devfsd.c	2004/04/14 17:51:21	1.9
+++ /var/cvs/busybox/miscutils/devfsd.c	2004/10/13 06:25:52	1.10
@@ -1547,7 +1547,7 @@
 #ifdef CONFIG_DEBUG
 	msg_logger( NO_DIE, LOG_INFO, "make_dir_tree()\n");
 #endif
-	if (bb_make_directory( dirname((char *)path),  S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH ,FILEUTILS_RECUR )==-1)
+	if (bb_make_directory( dirname((char *)path), -1, FILEUTILS_RECUR )==-1)
 	{
 #ifdef CONFIG_DEBUG
 		msg_logger( NO_DIE, LOG_ERR, "make_dir_tree(): %s: %m\n", path);



More information about the busybox-cvs mailing list