You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@hyperreal.org on 2000/02/10 14:24:16 UTC

cvs commit: apache-2.0/src/modules/standard mod_autoindex.c mod_log_config.c

dreid       00/02/10 05:24:15

  Modified:    src/main util.c
               src/modules/standard mod_autoindex.c mod_log_config.c
  Log:
  Small changes to remove some compiler complaints.
  
  Revision  Changes    Path
  1.30      +1 -1      apache-2.0/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/util.c,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- util.c	2000/01/28 18:01:35	1.29
  +++ util.c	2000/02/10 13:24:11	1.30
  @@ -117,7 +117,7 @@
   
   API_EXPORT(char *) ap_ht_time(ap_context_t *p, ap_time_t t, const char *fmt, int gmt)
   {
  -    ap_int32_t retcode;
  +    ap_size_t retcode;
       char ts[MAX_STRING_LEN];
       char tf[MAX_STRING_LEN];
       ap_exploded_time_t xt;
  
  
  
  1.23      +2 -1      apache-2.0/src/modules/standard/mod_autoindex.c
  
  Index: mod_autoindex.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_autoindex.c,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- mod_autoindex.c	2000/01/19 02:41:53	1.22
  +++ mod_autoindex.c	2000/02/10 13:24:13	1.23
  @@ -1277,7 +1277,8 @@
   			       autoindex_config_rec *d, request_rec *r,
   			       int autoindex_opts, char keyid, char direction)
   {
  -    int x, rv;
  +    int x;
  +    ap_size_t rv;
       char *name = r->uri;
       char *tp;
       int static_columns = (autoindex_opts & SUPPRESS_COLSORT);
  
  
  
  1.15      +1 -1      apache-2.0/src/modules/standard/mod_log_config.c
  
  Index: mod_log_config.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_log_config.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- mod_log_config.c	2000/01/19 02:42:07	1.14
  +++ mod_log_config.c	2000/02/10 13:24:13	1.15
  @@ -384,7 +384,7 @@
   static const char *log_request_time(request_rec *r, char *a)
   {
       ap_exploded_time_t xt;
  -    ap_status_t retcode;
  +    ap_size_t retcode;
       char tstr[MAX_STRING_LEN];
   
       /*