mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:46:16 +02:00
fix syslogd output to /dev/console (patch from #1170)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6131 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
cae6d4f9ed
commit
c0c7dc2586
14
package/busybox/patches/410-syslogd_circular_fix.patch
Normal file
14
package/busybox/patches/410-syslogd_circular_fix.patch
Normal file
@ -0,0 +1,14 @@
|
||||
diff -Nru busybox-1.3.1.orig/sysklogd/syslogd.c busybox-1.3.1/sysklogd/syslogd.c
|
||||
--- busybox-1.3.1.orig/sysklogd/syslogd.c 2007-01-02 21:28:26.000000000 +0700
|
||||
+++ busybox-1.3.1/sysklogd/syslogd.c 2007-01-02 21:29:10.000000000 +0700
|
||||
@@ -304,8 +304,8 @@
|
||||
vsnprintf(b, sizeof(b) - 1, fmt, arguments);
|
||||
va_end(arguments);
|
||||
circ_message(b);
|
||||
-
|
||||
- } else
|
||||
+ return;
|
||||
+ }
|
||||
#endif
|
||||
fd = device_open(logFilePath, O_WRONLY | O_CREAT
|
||||
| O_NOCTTY | O_APPEND | O_NONBLOCK);
|
Loading…
Reference in New Issue
Block a user