about summary refs log tree commit diff
path: root/misc/syslog.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-11-20 18:59:37 +0000
committerUlrich Drepper <drepper@redhat.com>2004-11-20 18:59:37 +0000
commitd3a9cb0c26d61f84586d37a29c4881614b612a69 (patch)
tree380ebe8394fd669aa738bc99585b9ce4e5e60ee0 /misc/syslog.c
parentfc9b33c771f7a54499ae7f060595656474ba83d6 (diff)
downloadglibc-d3a9cb0c26d61f84586d37a29c4881614b612a69.tar.gz
glibc-d3a9cb0c26d61f84586d37a29c4881614b612a69.tar.xz
glibc-d3a9cb0c26d61f84586d37a29c4881614b612a69.zip
Update.
2004-11-20  Ulrich Drepper  <drepper@redhat.com>

	* misc/syslog.c: Remove !USE_IN_LIBIO code.
Diffstat (limited to 'misc/syslog.c')
-rw-r--r--misc/syslog.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/misc/syslog.c b/misc/syslog.c
index 38d5a8e5f5..6916356da7 100644
--- a/misc/syslog.c
+++ b/misc/syslog.c
@@ -56,10 +56,8 @@ static char sccsid[] = "@(#)syslog.c	8.4 (Berkeley) 3/18/94";
 #include <varargs.h>
 #endif
 
-#ifdef USE_IN_LIBIO
-# include <libio/iolibio.h>
-# define ftell(s) INTUSE(_IO_ftell) (s)
-#endif
+#include <libio/iolibio.h>
+#define ftell(s) INTUSE(_IO_ftell) (s)
 
 static int	LogType = SOCK_DGRAM;	/* type of socket connection */
 static int	LogFile = -1;		/* fd for log */
@@ -187,16 +185,12 @@ vsyslog(pri, fmt, ap)
 	    __fsetlocking (f, FSETLOCKING_BYCALLER);
 	    prioff = fprintf (f, "<%d>", pri);
 	    (void) time (&now);
-#ifdef USE_IN_LIBIO
 	    f->_IO_write_ptr += __strftime_l (f->_IO_write_ptr,
-					      f->_IO_write_end - f->_IO_write_ptr,
+					      f->_IO_write_end
+					      - f->_IO_write_ptr,
 					      "%h %e %T ",
 					      __localtime_r (&now, &now_tm),
 					      &_nl_C_locobj);
-#else
-	    f->__bufp += strftime (f->__bufp, f->__put_limit - f->__bufp,
-				   "%h %e %T ", __localtime_r (&now, &now_tm));
-#endif
 	    msgoff = ftell (f);
 	    if (LogTag == NULL)
 	      LogTag = __progname;