]> granicus.if.org Git - apache/commitdiff
Small changes to remove some compiler complaints.
authorDavid Reid <dreid@apache.org>
Thu, 10 Feb 2000 13:24:13 +0000 (13:24 +0000)
committerDavid Reid <dreid@apache.org>
Thu, 10 Feb 2000 13:24:13 +0000 (13:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84598 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_autoindex.c
modules/loggers/mod_log_config.c
server/util.c

index d439e3acb6322e46c8f4d39fac08718927775b97..4f693d64cddc069bb6b01794889f37c19cb2ad93 100644 (file)
@@ -1277,7 +1277,8 @@ static void output_directories(struct ent **ar, int n,
                               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);
index 43e8510470a1ce5e558c14cf4b0d715ff43de0b7..fd4fadec0bfabe081dd619bd5b554f6bd33dcdc1 100644 (file)
@@ -384,7 +384,7 @@ static const char *log_env_var(request_rec *r, char *a)
 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];
 
     /*
index 19458e556b9c6e68f86e6b1ae0103a3442fdc481..19cdecf93dc58ab671badab31235f776a6c45ae7 100644 (file)
@@ -117,7 +117,7 @@ API_EXPORT(char *) ap_field_noparam(ap_context_t *p, const char *intype)
 
 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;