You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by se...@apache.org on 2008/03/17 15:40:29 UTC

svn commit: r637911 - in /webservices/axis2/trunk/c/util/src: base64_binary.c network_handler.c

Author: senaka
Date: Mon Mar 17 07:40:27 2008
New Revision: 637911

URL: http://svn.apache.org/viewvc?rev=637911&view=rev
Log:
Fixing typos

Modified:
    webservices/axis2/trunk/c/util/src/base64_binary.c
    webservices/axis2/trunk/c/util/src/network_handler.c

Modified: webservices/axis2/trunk/c/util/src/base64_binary.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/base64_binary.c?rev=637911&r1=637910&r2=637911&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/base64_binary.c (original)
+++ webservices/axis2/trunk/c/util/src/base64_binary.c Mon Mar 17 07:40:27 2008
@@ -213,7 +213,7 @@
     encoded_binary_len =
         axutil_base64_encode_len(base64_binary->plain_binary_len);
     encoded_binary =
-        AXIS2_MALLOC(env->allocator, sizeof(char) *encoded_binary_len);
+        AXIS2_MALLOC(env->allocator, sizeof(char) * encoded_binary_len);
 
     if (!encoded_binary)
     {

Modified: webservices/axis2/trunk/c/util/src/network_handler.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/network_handler.c?rev=637911&r1=637910&r2=637911&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/network_handler.c (original)
+++ webservices/axis2/trunk/c/util/src/network_handler.c Mon Mar 17 07:40:27 2008
@@ -248,10 +248,11 @@
         return 0;               /* WinSock 2.2 not found */
 
     /* Confirm that the WinSock DLL supports 2.2. 
-       Note that if the DLL supports versions greater 
-       than 2.2 in addition to 2.2, it will still return 
-       2.2 in wVersion since that is the version we 
-       requested. */
+     * Note that if the DLL supports versions greater 
+     * than 2.2 in addition to 2.2, it will still return 
+     * 2.2 in wVersion since that is the version we 
+     * requested.
+     */
 
     if (LOBYTE(wsaData.wVersion) != 2 || HIBYTE(wsaData.wVersion) != 2)
     {



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org