bug-inetutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-inetutils] [patch] syslogd separate hostname by tab


From: Dirk Jagdmann
Subject: [bug-inetutils] [patch] syslogd separate hostname by tab
Date: Fri, 15 Dec 2006 23:58:56 +0100
User-agent: Mail/News 1.5.0.5 (X11/20060727)

Hello developers,

I wanted to have some alignment on my loghost and I have made a small patch to syslogd which will put a tab character after the hostname instead of a space character. A patch to version 1.5 of syslogd is attachted to this email.

--
---> Dirk Jagdmann ^ doj / cubic
----> http://cubic.org/~doj
-----> http://llg.cubic.org
Index: syslogd/syslogd.c
===================================================================
--- syslogd.orig/syslogd.c      2006-12-15 21:17:43.000000000 +0100
+++ syslogd/syslogd.c   2006-12-15 21:18:15.000000000 +0100
@@ -1199,7 +1199,7 @@
   v->iov_base = f->f_prevhost;
   v->iov_len = strlen (v->iov_base);
   v++;
-  v->iov_base = (char *)" ";
+  v->iov_base = (char *)"\t";
   v->iov_len = 1;
   v++;
 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]