You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2005/06/09 22:28:23 UTC

svn commit: r189810 - /httpd/mod_arm4/trunk/mod_arm4.c

Author: stoddard
Date: Thu Jun  9 13:28:22 2005
New Revision: 189810

URL: http://svn.apache.org/viewcvs?rev=189810&view=rev
Log:
Use a more descriptive variable name. No functional change

Modified:
    httpd/mod_arm4/trunk/mod_arm4.c

Modified: httpd/mod_arm4/trunk/mod_arm4.c
URL: http://svn.apache.org/viewcvs/httpd/mod_arm4/trunk/mod_arm4.c?rev=189810&r1=189809&r2=189810&view=diff
==============================================================================
--- httpd/mod_arm4/trunk/mod_arm4.c (original)
+++ httpd/mod_arm4/trunk/mod_arm4.c Thu Jun  9 13:28:22 2005
@@ -307,7 +307,7 @@
     char *app_group;
     char *app_instance;
 
-    const arm_char_t *attributes[] = {
+    const arm_char_t *tran_context_names[] = {
         "ServerVersion",
         "HostInfo",
         "RemoteAddress",
@@ -366,7 +366,7 @@
     sb_tran_identity->identity_property_count = 0;
     sb_tran_identity->identity_property_array = NULL;
     sb_tran_identity->context_name_count = 9;
-    sb_tran_identity->context_name_array = &attributes[0];
+    sb_tran_identity->context_name_array = &tran_context_names[0];
     sb_tran_identity->uri = NULL;
 
     subbuf = (arm_subbuffer_t *) sb_tran_identity;