*** syslog.c.old Sat Nov 4 23:24:12 1995 --- syslog.c Sun Nov 5 00:35:54 1995 *************** *** 159,164 **** prlen = strftime(p, tbuf_len, "%b %d %H:%M:%S ", ! #else /* NeXT */ prlen = strftime(p, tbuf_len, "%h %e %T ", ! #endif /* NeXT */ localtime(&now)); if (prlen >= tbuf_len) --- 159,170 ---- prlen = strftime(p, tbuf_len, "%b %d %H:%M:%S ", ! #elif defined(ultrix) ! prlen = strftime(p, tbuf_len, "%h %d %T ", ! #else /* strftime has %e */ prlen = strftime(p, tbuf_len, "%h %e %T ", ! #endif /* special cases where strftime lacks %e */ localtime(&now)); + #if defined(ultrix) + if (p[4] == '0') + p[4] = ' '; + #endif if (prlen >= tbuf_len)