You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by br...@apache.org on 2002/04/21 10:41:01 UTC

cvs commit: httpd-2.0/server util_time.c

brianp      02/04/21 01:41:01

  Modified:    server   util_time.c
  Log:
  Use the day and month names exported from APR, rather than duplicating them
  
  Revision  Changes    Path
  1.9       +2 -11     httpd-2.0/server/util_time.c
  
  Index: util_time.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/util_time.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- util_time.c	21 Apr 2002 07:55:50 -0000	1.8
  +++ util_time.c	21 Apr 2002 08:41:01 -0000	1.9
  @@ -219,15 +219,6 @@
       return APR_SUCCESS;
   }
   
  -static const char month_snames[12][4] =
  -{
  -    "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
  -};
  -static const char day_snames[7][4] =
  -{
  -    "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
  -};
  -
   AP_DECLARE(apr_status_t) ap_recent_rfc822_date(char *date_str, apr_time_t t)
   {
       /* ### This code is a clone of apr_rfc822_date(), except that it
  @@ -242,7 +233,7 @@
       /* example: "Sat, 08 Jan 2000 18:31:41 GMT" */
       /*           12345678901234567890123456789  */
   
  -    s = &day_snames[xt.tm_wday][0];
  +    s = &apr_day_snames[xt.tm_wday][0];
       *date_str++ = *s++;
       *date_str++ = *s++;
       *date_str++ = *s++;
  @@ -251,7 +242,7 @@
       *date_str++ = xt.tm_mday / 10 + '0';
       *date_str++ = xt.tm_mday % 10 + '0';
       *date_str++ = ' ';
  -    s = &month_snames[xt.tm_mon][0];
  +    s = &apr_month_snames[xt.tm_mon][0];
       *date_str++ = *s++;
       *date_str++ = *s++;
       *date_str++ = *s++;