]> granicus.if.org Git - apache/commitdiff
Remove some 'register' in variable declaration.
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 14 Jul 2014 09:05:27 +0000 (09:05 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 14 Jul 2014 09:05:27 +0000 (09:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1610366 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_autoindex.c
modules/proxy/mod_proxy_ftp.c
support/htdigest.c

index 3d36c77b8107e5f1782306d81f864aeba785133d..79f83d73f4eecfa4d7351f97ae624df20fe1695f 100644 (file)
@@ -1416,7 +1416,7 @@ static char *terminate_description(autoindex_config_rec *d, char *desc,
                                    apr_int32_t autoindex_opts, int desc_width)
 {
     int maxsize = desc_width;
-    register int x;
+    int x;
 
     /*
      * If there's no DescriptionWidth in effect, default to the old
index addd033ec33ea6297328379118ba9a2a3e82264b..3005add5b0eaa0d1c0d557fb9e3fdee9bbd14668 100644 (file)
@@ -448,7 +448,7 @@ static apr_status_t proxy_send_dir_filter(ap_filter_t *f,
     apr_bucket_brigade *out = apr_brigade_create(p, c->bucket_alloc);
     apr_status_t rv;
 
-    register int n;
+    int n;
     char *dir, *path, *reldir, *site, *str, *type;
 
     const char *pwd = apr_table_get(r->notes, "Directory-PWD");
index f76036d7a5bd34e3e583d0f8e6027d2e7fe64482..972fa82d209061992a7359b9538dbbf48fabb3ea 100644 (file)
@@ -92,7 +92,7 @@ static void getword(char *word, char *line, char stop)
 
 static int get_line(char *s, int n, apr_file_t *f)
 {
-    register int i = 0;
+    int i = 0;
     char ch;
     apr_status_t rv = APR_EINVAL;