X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fgenstamp.c;h=e8d5dd86bc3f3b4c4c3a64168e4bc00add8b8d9b;hb=51b18018ff923284d76a36cbd421d62abf6afcf4;hp=ce9575559059b3965dec7ee042e8f9f271ee1b04;hpb=4aed8bcc44474e27485a72334805022d6aa604b1;p=citadel.git diff --git a/citadel/genstamp.c b/citadel/genstamp.c index ce9575559..e8d5dd86b 100644 --- a/citadel/genstamp.c +++ b/citadel/genstamp.c @@ -1,33 +1,15 @@ /* - * $Id$ - * * Function to generate RFC822-compliant textual time/date stamp - * */ -#ifdef DLL_EXPORT -#define IN_LIBCIT -#endif - +#include "sysdep.h" #include #include #include #include - -#if TIME_WITH_SYS_TIME -# include -# include -#else -# if HAVE_SYS_TIME_H -# include -# else -# include -# endif -#endif - +#include #include "genstamp.h" - static char *months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" @@ -37,57 +19,64 @@ static char *weekdays[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; - /* * Supplied with a unix timestamp, generate an RFC822-compliant textual * time and date stamp. */ -void datestring(char *buf, time_t xtime, int which_format) { - struct tm *t; +long datestring(char *buf, size_t n, time_t xtime, int which_format) { + struct tm t; long offset; char offsign; - t = localtime(&xtime); + localtime_r(&xtime, &t); /* Convert "seconds west of GMT" to "hours/minutes offset" */ +#ifdef HAVE_STRUCT_TM_TM_GMTOFF + offset = t.tm_gmtoff; +#else offset = timezone; +#endif if (offset > 0) { - offsign = '-'; + offsign = '+'; } else { offset = 0L - offset; - offsign = '+'; + offsign = '-'; } offset = ( (offset / 3600) * 100 ) + ( offset % 60 ); switch(which_format) { case DATESTRING_RFC822: - sprintf(buf, "%s, %02d %s %04d %02d:%02d:%02d %c%04ld", - weekdays[t->tm_wday], - t->tm_mday, - months[t->tm_mon], - t->tm_year + 1900, - t->tm_hour, - t->tm_min, - t->tm_sec, + return snprintf( + buf, n, + "%s, %02d %s %04d %02d:%02d:%02d %c%04ld", + weekdays[t.tm_wday], + t.tm_mday, + months[t.tm_mon], + t.tm_year + 1900, + t.tm_hour, + t.tm_min, + t.tm_sec, offsign, offset ); break; case DATESTRING_IMAP: - sprintf(buf, "%02d-%s-%04d %02d:%02d:%02d %c%04ld", - t->tm_mday, - months[t->tm_mon], - t->tm_year + 1900, - t->tm_hour, - t->tm_min, - t->tm_sec, + return snprintf( + buf, n, + "%02d-%s-%04d %02d:%02d:%02d %c%04ld", + t.tm_mday, + months[t.tm_mon], + t.tm_year + 1900, + t.tm_hour, + t.tm_min, + t.tm_sec, offsign, offset ); break; } + return 0; } -