Update of /cvsroot/devil-linux/build/config/etc/syslog-ng
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11621/config/etc/syslog-ng
Modified Files:
Tag: rel-1-0-patches
syslog-ng.conf
Log Message:
- fixed a bug in the syslog-ng.conf file which causes /dev/log to be closed
during a reload command (use stream instead of dgram)
Index: syslog-ng.conf
===================================================================
RCS file: /cvsroot/devil-linux/build/config/etc/syslog-ng/syslog-ng.conf,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -u -d -r1.7 -r1.7.2.1
--- syslog-ng.conf 17 Dec 2002 19:50:13 -0000 1.7
+++ syslog-ng.conf 20 May 2004 00:44:11 -0000 1.7.2.1
@@ -6,7 +6,7 @@
#####################################################################
# define the source pipe for all local messages
#####################################################################
-source src { unix-dgram("/dev/log"); internal(); };
+source src { unix-stream("/dev/log"); internal(); };
#####################################################################
# print all messages on tty10
|