You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2004/11/27 23:50:20 UTC

svn commit: r106766 - /httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c /httpd/httpd/trunk/server/mpm/netware/mpm_netware.c

Author: bnicholes
Date: Sat Nov 27 14:50:18 2004
New Revision: 106766

URL: http://svn.apache.org/viewcvs?view=rev&rev=106766
Log:
Fixing various compiler error when compiling against the latest version of LibC SDK
Modified:
   httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c
   httpd/httpd/trunk/server/mpm/netware/mpm_netware.c

Modified: httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c?view=diff&rev=106766&p1=httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c&r1=106765&p2=httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c&r2=106766
==============================================================================
--- httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c	(original)
+++ httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c	Sat Nov 27 14:50:18 2004
@@ -418,7 +418,7 @@
     sNWTLSOpts.numElementsInKeyList         = 0;
     sNWTLSOpts.reservedforfutureuse         = NULL;
     sNWTLSOpts.reservedforfutureCRL         = NULL;
-    sNWTLSOpts.reservedforfutureCRLLen      = NULL;
+    sNWTLSOpts.reservedforfutureCRLLen      = 0;
     sNWTLSOpts.reserved1                    = NULL;
     sNWTLSOpts.reserved2                    = NULL;
     sNWTLSOpts.reserved3                    = NULL;

Modified: httpd/httpd/trunk/server/mpm/netware/mpm_netware.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/mpm/netware/mpm_netware.c?view=diff&rev=106766&p1=httpd/httpd/trunk/server/mpm/netware/mpm_netware.c&r1=106765&p2=httpd/httpd/trunk/server/mpm/netware/mpm_netware.c&r2=106766
==============================================================================
--- httpd/httpd/trunk/server/mpm/netware/mpm_netware.c	(original)
+++ httpd/httpd/trunk/server/mpm/netware/mpm_netware.c	Sat Nov 27 14:50:18 2004
@@ -1018,7 +1018,7 @@
 
             for (i=len; i; i--) {
                 if (s[i] == '\\' || s[i] == '/') {
-                    s[i] = NULL;
+                    s[i] = '\0';
                     apr_filepath_merge(&def_server_root, NULL, s, 
                         APR_FILEPATH_TRUENAME, process->pool);
                     break;