Path: utzoo!utgpu!water!watmath!clyde!bellcore!rutgers!ucsd!ucbvax!hplabs!hpda!hpycla!kawaji From: kawaji@hpycla.HP.COM (Toshiyuki Kawaji) Newsgroups: comp.mail.elm Subject: Re: Elm 2.0gamma Expire bug Message-ID: <1000001@hpycla.HP.COM> Date: 21 Aug 88 23:57:08 GMT References: <1677@bu-tyng.bu.edu> Organization: HP NSG/ISD/USO/UXL-Hachioji,Japan Lines: 24 src/expires.c has bug The mailer doesn't give the date into form #1. /** first step is to break down the date given into MM DD YY HH MM format: The possible formats for this field are, by example: (1) Mon, Jun 11, 87 ^^^^^^^^^^^ > (1) Mon, 11 Jun 87 else if (strlen(word4) != 0) { /* form #1 */ month = month_number(word2); day = atoi(word3); year = atoi(word4); } ---------- else if (strlen(word4) != 0) { /* form #1 */ > month = month_number(word3); > day = atoi(word2); year = atoi(word4); }