[BusyBox] stable branch policy

Vladimir N. Oleynik dzo at simtreas.ru
Sat Aug 4 10:08:55 UTC 2001


Matt Kraai wrote:
> 
> Howdy,
> 
> Now that there is a stable branch, I think we need to create a CVS
> branch and decide what types of fixes are permissible for it.  For
> example, should my recent patch to add support for underscores in
> variable names in msh go on the branch?  Erik?

....
And absolute small optimize patchs ;-)
For example:


--w
vodz
-------------- next part --------------
diff -rbu busybox.orig/init.c busybox/init.c
--- busybox.orig/init.c	Sat Aug  4 19:58:20 2001
+++ busybox/init.c	Sat Aug  4 19:59:56 2001
@@ -203,9 +203,7 @@
 		va_start(arguments, fmt);
 		vsnprintf(msg, sizeof(msg), fmt, arguments);
 		va_end(arguments);
-		openlog(applet_name, 0, LOG_USER);
-		syslog(LOG_USER|LOG_INFO, msg);
-		closelog();
+		syslog_msg(LOG_USER, LOG_USER|LOG_INFO, msg);
 	}
 #else
 	static int log_fd = -1;


More information about the busybox mailing list