1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

*** empty log message ***

Tue Sep  3 11:16:07 1996  Thomas Bushnell/ n/BSG  <thomas@gnu.ai.mit.edu>

	* shadow/lckpwdf.c (__ulckpwdf): Don't take address of LOCK in
 	call to __libc_lock_lock.

	* sysdeps/mach/hurd/send.c (__send): Declare BUF const.
	* sysdeps/mach/hurd/sendto.c (sendto): Likewise.

	* sysdeps/stub/ustat.c: Include <sys/ustat.h>.

	* misc/syslog.c (vsyslog): Fix typo (`mow_tm' -> `now_tm').
This commit is contained in:
Thomas Bushnell, BSG
1996-09-03 22:24:21 +00:00
parent 3112c3742d
commit db813f25f2
6 changed files with 17 additions and 4 deletions

View File

@ -131,7 +131,7 @@ vsyslog(pri, fmt, ap)
__localtime_r (&now, &now_tm));
#else
f->__bufp += strftime (f->__bufp, f->__put_limit - f->__bufp,
"%h %e %T ", __localtime_r (&now, &mow_tm));
"%h %e %T ", __localtime_r (&now, &now_tm));
#endif
msgoff = ftell (f);
if (LogTag == NULL)