List:Commits« Previous MessageNext Message »
From:msvensson Date:October 23 2006 11:26am
Subject:bk commit into 5.0 tree (msvensson:1.2327)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2006-10-23 13:26:04+02:00, msvensson@neptunus.(none) +1 -0
  Netware uses size_t as socklen_t

  extra/yassl/testsuite/test.hpp@stripped, 2006-10-23 13:26:02+02:00, msvensson@neptunus.(none) +4 -1
    Netware uses size_t as socklen_t

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	msvensson
# Host:	neptunus.(none)
# Root:	/home/msvensson/mysql/mysql-5.0-maint

--- 1.8/extra/yassl/testsuite/test.hpp	2006-10-23 13:26:09 +02:00
+++ 1.9/extra/yassl/testsuite/test.hpp	2006-10-23 13:26:09 +02:00
@@ -27,8 +27,11 @@
 #endif /* _WIN32 */
 
 
-#if !defined(_SOCKLEN_T) && (defined(_WIN32) || defined(__NETWARE__))
+#if !defined(_SOCKLEN_T) && defined(_WIN32)
     typedef int socklen_t;
+#endif
+#if !defined(_SOCKLEN_T) && defined(__NETWARE__)
+    typedef size_t socklen_t;
 #endif
 
 
Thread
bk commit into 5.0 tree (msvensson:1.2327)msvensson23 Oct