From: Date: September 22 2006 11:46am Subject: bk commit into 5.0 tree (ramil:1.2285) BUG#22227 List-Archive: http://lists.mysql.com/commits/12385 X-Bug: 22227 Message-Id: <200609220946.k8M9kPpw001771@myoffice.izhnet.ru> Below is the list of changes that have just been committed into a local 5.0 repository of ram. When ram 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-09-22 14:46:18+05:00, ramil@stripped +1 -0 Fix for bug #22227: ulong not defined for client library - don't use (ulong) type cast in the include/mysql_com.h as it's not a standard type and might cause compilation errors on some platforms. include/mysql_com.h@stripped, 2006-09-22 14:46:13+05:00, ramil@stripped +4 -4 Fix for bug #22227: ulong not defined for client library - use UL istead of (ulong) type cast. # 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: ramil # Host: myoffice.izhnet.ru # Root: /usr/home/ram/work/5.0-maint.b22227 --- 1.109/include/mysql_com.h 2006-09-22 14:46:25 +05:00 +++ 1.110/include/mysql_com.h 2006-09-22 14:46:25 +05:00 @@ -137,11 +137,11 @@ enum enum_server_command #define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */ #define CLIENT_RESERVED 16384 /* Old flag for 4.1 protocol */ #define CLIENT_SECURE_CONNECTION 32768 /* New 4.1 authentication */ -#define CLIENT_MULTI_STATEMENTS (((ulong) 1) << 16) /* Enable/disable multi-stmt support */ -#define CLIENT_MULTI_RESULTS (((ulong) 1) << 17) /* Enable/disable multi-results */ +#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */ +#define CLIENT_MULTI_RESULTS (1UL << 17) /* Enable/disable multi-results */ -#define CLIENT_SSL_VERIFY_SERVER_CERT (((ulong) 1) << 30) -#define CLIENT_REMEMBER_OPTIONS (((ulong) 1) << 31) +#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30) +#define CLIENT_REMEMBER_OPTIONS (1UL << 31) #define SERVER_STATUS_IN_TRANS 1 /* Transaction has started */ #define SERVER_STATUS_AUTOCOMMIT 2 /* Server in auto_commit mode */