You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jw...@apache.org on 2001/11/09 00:26:36 UTC

cvs commit: httpd-2.0/modules/metadata mod_headers.c

jwoolley    01/11/08 15:26:36

  Modified:    modules/metadata mod_headers.c
  Log:
  Fix constness compiler warning
  
  Revision  Changes    Path
  1.35      +1 -1      httpd-2.0/modules/metadata/mod_headers.c
  
  Index: mod_headers.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/metadata/mod_headers.c,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -d -u -r1.34 -r1.35
  --- mod_headers.c	2001/11/07 19:25:33	1.34
  +++ mod_headers.c	2001/11/08 23:26:36	1.35
  @@ -190,7 +190,7 @@
   }
   static const char *header_request_env_var(request_rec *r, char *a)
   {
  -    char *s = apr_table_get(r->subprocess_env,a);
  +    const char *s = apr_table_get(r->subprocess_env,a);
   		 
       if (s)
           return s;