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/29 16:42:42 UTC

svn commit: r106920 - /httpd/httpd/branches/2.0.x/modules/arch/netware/mod_nw_ssl.c /httpd/httpd/branches/2.0.x/server/mpm/netware/mpm_netware.c

Author: bnicholes
Date: Mon Nov 29 07:42:41 2004
New Revision: 106920

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

Modified: httpd/httpd/branches/2.0.x/modules/arch/netware/mod_nw_ssl.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/modules/arch/netware/mod_nw_ssl.c?view=diff&rev=106920&p1=httpd/httpd/branches/2.0.x/modules/arch/netware/mod_nw_ssl.c&r1=106919&p2=httpd/httpd/branches/2.0.x/modules/arch/netware/mod_nw_ssl.c&r2=106920
==============================================================================
--- httpd/httpd/branches/2.0.x/modules/arch/netware/mod_nw_ssl.c	(original)
+++ httpd/httpd/branches/2.0.x/modules/arch/netware/mod_nw_ssl.c	Mon Nov 29 07:42:41 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/branches/2.0.x/server/mpm/netware/mpm_netware.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/server/mpm/netware/mpm_netware.c?view=diff&rev=106920&p1=httpd/httpd/branches/2.0.x/server/mpm/netware/mpm_netware.c&r1=106919&p2=httpd/httpd/branches/2.0.x/server/mpm/netware/mpm_netware.c&r2=106920
==============================================================================
--- httpd/httpd/branches/2.0.x/server/mpm/netware/mpm_netware.c	(original)
+++ httpd/httpd/branches/2.0.x/server/mpm/netware/mpm_netware.c	Mon Nov 29 07:42:41 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;