2006-06-11 23:34:07 +04:00
|
|
|
/* $NetBSD: humandate.c,v 1.3 2006/06/11 19:34:10 kardel Exp $ */
|
2000-03-29 16:38:44 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* humandate - convert an NTP (or the current) time to something readable
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "ntp_fp.h"
|
2003-12-04 19:05:14 +03:00
|
|
|
#include "ntp_unixtime.h" /* includes <sys/time.h> and <time.h> */
|
2000-03-29 16:38:44 +04:00
|
|
|
#include "lib_strbuf.h"
|
|
|
|
#include "ntp_stdlib.h"
|
|
|
|
|
|
|
|
static const char *months[] = {
|
|
|
|
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
|
|
|
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
|
|
|
|
};
|
|
|
|
static const char *days[] = {
|
|
|
|
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
|
|
|
|
};
|
|
|
|
|
|
|
|
char *
|
|
|
|
humandate(
|
|
|
|
u_long ntptime
|
|
|
|
)
|
|
|
|
{
|
|
|
|
char *bp;
|
|
|
|
struct tm *tm;
|
|
|
|
|
2006-06-11 23:34:07 +04:00
|
|
|
tm = ntp2unix_tm(ntptime, 1);
|
2000-03-29 16:38:44 +04:00
|
|
|
|
2003-12-04 19:05:14 +03:00
|
|
|
if (!tm)
|
|
|
|
return "--- --- -- ---- --:--:--";
|
|
|
|
|
|
|
|
LIB_GETBUF(bp);
|
|
|
|
|
2000-03-29 16:38:44 +04:00
|
|
|
(void) sprintf(bp, "%s, %s %2d %4d %2d:%02d:%02d",
|
|
|
|
days[tm->tm_wday], months[tm->tm_mon], tm->tm_mday,
|
|
|
|
1900+tm->tm_year, tm->tm_hour, tm->tm_min, tm->tm_sec);
|
|
|
|
|
|
|
|
return bp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is used in msyslog.c; we don't want to clutter up the log with
|
|
|
|
the year and day of the week, etc.; just the minimal date and time. */
|
|
|
|
|
|
|
|
char *
|
|
|
|
humanlogtime(void)
|
|
|
|
{
|
|
|
|
char *bp;
|
|
|
|
time_t cursec = time((time_t *) 0);
|
2006-06-11 23:34:07 +04:00
|
|
|
struct tm *tm;
|
2000-03-29 16:38:44 +04:00
|
|
|
|
2006-06-11 23:34:07 +04:00
|
|
|
tm = localtime(&cursec);
|
2003-12-04 19:05:14 +03:00
|
|
|
if (!tm)
|
|
|
|
return "-- --- --:--:--";
|
|
|
|
|
2000-03-29 16:38:44 +04:00
|
|
|
LIB_GETBUF(bp);
|
|
|
|
|
|
|
|
(void) sprintf(bp, "%2d %s %02d:%02d:%02d",
|
|
|
|
tm->tm_mday, months[tm->tm_mon],
|
|
|
|
tm->tm_hour, tm->tm_min, tm->tm_sec);
|
|
|
|
|
|
|
|
return bp;
|
|
|
|
}
|