]> git.marmaro.de Git - mmh/commitdiff
We have only numeric timezone support (e.g. +0200) from now on.
authormarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 10:12:06 +0000 (12:12 +0200)
committermarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 10:12:06 +0000 (12:12 +0200)
That's an mmh decision. Pulled in from nmh is the following part:

Removed use of tzset()/tzname in dtimezone(). They caused the returned
timezone string to be for the user's current timezone, but the function
is supposed to return the string representation of the timezone of its
argument.

Thanks to David Levine.

h/tws.h
sbr/dtime.c
sbr/fmt_scan.c
uip/anno.c
uip/forw.c
uip/inc.c
uip/msgchk.c
uip/pick.c
uip/slocal.c
uip/spost.c

diff --git a/h/tws.h b/h/tws.h
index 289a6732cc67f9b76c2c10904611b2991d651203..420275cea3957231c6c34fc067bb8e5865c89970 100644 (file)
--- a/h/tws.h
+++ b/h/tws.h
@@ -38,7 +38,6 @@ struct tws {
 #define TW_SZEXP 0x0004  /*   explicitly given             */
 
 #define TW_DST   0x0010  /* daylight savings time          */
-#define TW_ZONE  0x0020  /* use numeric timezones only     */
 
 #define TW_SUCC  0x0040  /* whether parsing was successful */
 #define TW_YES   0x0040  /*   yes, found                   */
@@ -53,13 +52,13 @@ extern char *tw_moty[];
 /*
 ** prototypes
 */
-char *dtime(time_t *, int);
-char *dtimenow(int);
+char *dtime(time_t *);
+char *dtimenow(void);
 char *dctime(struct tws *);
 struct tws *dlocaltimenow(void);
 struct tws *dlocaltime(time_t *);
 struct tws *dgmtime(time_t *);
-char *dasctime(struct tws *, int);
+char *dasctime(struct tws *);
 char *dtimezone(int, int);
 void twscopy(struct tws *, struct tws *);
 int twsort(struct tws *, struct tws *);
index 1273112bfffd39b23914bec313f6e5261fee3a0e..738ffd59728f5d4696322f36d81f1225512d52eb 100644 (file)
@@ -197,20 +197,17 @@ dctime(struct tws *tw)
 /*
 ** Produce a date/time string of the form
 **
-**    Mon, 16 Jun 1992 15:30:48 -700 (or)
-**    Mon, 16 Jun 1992 15:30:48 EDT
+**    Mon, 16 Jun 1992 15:30:48 -0700
 **
-** for the current time, as specified by rfc822.
-** The first form is required by rfc1123.
+** for the current time, as specified by rfc822 and rfc1123.
 */
-
 char *
-dtimenow(int alpha_timezone)
+dtimenow(void)
 {
        time_t clock;
 
        time(&clock);
-       return dtime(&clock, alpha_timezone);
+       return dtime(&clock);
 }
 
 
@@ -218,22 +215,14 @@ dtimenow(int alpha_timezone)
 ** Using a local calendar time value, produce
 ** a date/time string of the form
 **
-**    Mon, 16 Jun 1992 15:30:48 -700  (or)
-**    Mon, 16 Jun 1992 15:30:48 EDT
+**    Mon, 16 Jun 1992 15:30:48 -0700
 **
-** as specified by rfc822.  The first form is required
-** by rfc1123 for outgoing messages.
+** as specified by rfc822 and rfc1123.
 */
-
 char *
-dtime(time_t *clock, int alpha_timezone)
+dtime(time_t *clock)
 {
-       if (alpha_timezone)
-               /* use alpha-numeric timezones */
-               return dasctime(dlocaltime(clock), TW_NULL);
-       else
-               /* use numeric timezones */
-               return dasctime(dlocaltime(clock), TW_ZONE);
+       return dasctime(dlocaltime(clock));
 }
 
 
@@ -245,9 +234,8 @@ dtime(time_t *clock, int alpha_timezone)
 **
 ** as specified by rfc822 and rfc1123.
 */
-
 char *
-dasctime(struct tws *tw, int flags)
+dasctime(struct tws *tw)
 {
        char buffer[80];
        static char result[80];
@@ -259,7 +247,7 @@ dasctime(struct tws *tw, int flags)
        if ((tw->tw_flags & TW_SZONE) == TW_SZNIL)
                result[0] = '\0';
        else
-               snprintf(result, sizeof(result), " %s", dtimezone(tw->tw_zone, tw->tw_flags | flags));
+               snprintf(result, sizeof(result), " %s", dtimezone(tw->tw_zone, tw->tw_flags));
 
        snprintf(buffer, sizeof(buffer), "%02d %s %0*d %02d:%02d:%02d%s",
                tw->tw_mday, tw_moty[tw->tw_mon],
@@ -279,9 +267,8 @@ dasctime(struct tws *tw, int flags)
 
 
 /*
-** Get the timezone for given offset
+** Get the timezone for given offset as numeric value.
 */
-
 char *
 dtimezone(int offset, int flags)
 {
@@ -296,11 +283,6 @@ dtimezone(int offset, int flags)
                hours = offset / 60;
        }
 
-       if (!(flags & TW_ZONE) && mins == 0) {
-               tzset();
-               return ((flags & TW_DST) ? tzname[1] : tzname[0]);
-       }
-
 #ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST
        if (flags & TW_DST)
                hours += 1;
index 5103dbd772697372477cda28ae083248f9611872..113b8cfff3ed44199da5a565adb32f1935542ab1 100644 (file)
@@ -607,10 +607,8 @@ fmt_scan(struct format *format, char *scanl, int width, int *dat)
                        value = fmt->f_comp->c_tws->tw_flags & TW_DST;
                        break;
                case FT_LS_822DATE:
-                       str = dasctime(fmt->f_comp->c_tws , TW_ZONE);
-                       break;
                case FT_LS_PRETTY:
-                       str = dasctime(fmt->f_comp->c_tws, TW_NULL);
+                       str = dasctime(fmt->f_comp->c_tws);
                        break;
 
                case FT_LS_PERS:
index b1d866785536936a6a913baedcde5e1d6642c905..3b1d1377c55c53b1564e5f95a92b9cf9aec96a5f 100644 (file)
@@ -604,7 +604,7 @@ annosbr(int fd, char *file, char *comp, char *text, int datesw, int delete,
                }
 
                if (datesw) {
-                       fprintf(tmp, "%s: %s\n", comp, dtimenow(0));
+                       fprintf(tmp, "%s: %s\n", comp, dtimenow());
                }
                if ((cp = text)) {
                        do {
index 53b09683b083848178bfbe01dc52c11c8fe61c47..be1242b34a14251de1ae93cc5013c81aa2bb8f80 100644 (file)
@@ -325,7 +325,7 @@ build_form(char *form, char *digest, int volume, int issue)
                cptr->c_text = digest;
        FINDCOMP(cptr, "date");
        if (cptr)
-               cptr->c_text = getcpy(dtimenow(0));
+               cptr->c_text = getcpy(dtimenow());
 
        dat[0] = issue;
        dat[1] = volume;
index 98fffef1be34bbe69bdfd22b0be8881313ec373d..ee51219760a8f0e2bf42b51a7c6f14e17d138a2c 100644 (file)
--- a/uip/inc.c
+++ b/uip/inc.c
@@ -337,7 +337,7 @@ main(int argc, char **argv)
                        chmod(audfile, m_gmprot());
 
                fprintf(aud, from ? "<<inc>> %s  -ms %s\n" : "<<inc>> %s\n",
-                        dtimenow(0), from);
+                        dtimenow(), from);
        }
 
 #ifdef MHE
index b5b02c910c3280d75dfe468db47f67750315fd20..e2707d330fcc0d74fa82de4ef5b69692664ae310 100644 (file)
@@ -231,7 +231,7 @@ checkmail(char *user, int datesw, int notifysw, int personal)
 
        if (notifysw) {
                if (datesw && st.st_atime) {
-                       printf("; last read on %s", dtime(&st.st_atime, 1));
+                       printf("; last read on %s", dtime(&st.st_atime));
                }
                printf("\n");
        }
index 3fb853cdc40e512dfaf1fbfcc38f525953f2efc8..7f8d39a73d64c1069391cb653f69980f159197ae 100644 (file)
@@ -829,7 +829,7 @@ PRaction(struct nexus *n, int level)
        if (n->n_action == TWSaction) {
                fprintf(stderr, "TEMPORAL(%s) %s: %s\n",
                                n->n_after ? "after" : "before", n->n_datef,
-                               dasctime(&n->n_tws, TW_NULL));
+                               dasctime(&n->n_tws));
                return;
        }
        fprintf(stderr, "UNKNOWN(0x%x)\n",
index c0f0922db1a7a7fbadf896ae9bb73f4e68c24873..b83a2686ad08bf2c61d21d6692dcc77a331110cc 100644 (file)
@@ -319,7 +319,7 @@ main(int argc, char **argv)
        if (!(now = dlocaltimenow())) {
                adios(NULL, "unable to ascertain local time");
        }
-       snprintf(ddate, sizeof(ddate), "Delivery-Date: %s\n", dtimenow(0));
+       snprintf(ddate, sizeof(ddate), "Delivery-Date: %s\n", dtimenow());
 
        /*
        ** Copy the message to a temporary file
index 43d3d10654aa7dd27e4dae06dd511b419e3ae700..69d470824d5507cd4b26b94cc809438e897301c2 100644 (file)
@@ -477,7 +477,7 @@ finish_headers(FILE *out)
        char *resentstr = (msgstate == resent) ? "Resent-" : "";
 
        if (!(msgflags & MDAT)) {
-               fprintf(out, "%sDate: %s\n", resentstr, dtimenow(0));
+               fprintf(out, "%sDate: %s\n", resentstr, dtimenow());
        }
 
        strncpy(from, getusername(), sizeof(from));