You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2007/12/05 21:46:51 UTC

svn commit: r601516 - /httpd/mod_ftp/trunk/modules/ftp/mod_ftp.c

Author: wrowe
Date: Wed Dec  5 12:46:51 2007
New Revision: 601516

URL: http://svn.apache.org/viewvc?rev=601516&view=rev
Log:
Honor const'ness

Modified:
    httpd/mod_ftp/trunk/modules/ftp/mod_ftp.c

Modified: httpd/mod_ftp/trunk/modules/ftp/mod_ftp.c
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/mod_ftp.c?rev=601516&r1=601515&r2=601516&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/modules/ftp/mod_ftp.c (original)
+++ httpd/mod_ftp/trunk/modules/ftp/mod_ftp.c Wed Dec  5 12:46:51 2007
@@ -78,7 +78,7 @@
                            apr_pool_t *ptemp, server_rec *s)
 {
     server_rec *base = s;
-    char *global_limitdbfile;
+    const char *global_limitdbfile;
 
     ap_add_version_component(p, FTP_SERVER_STRING);