From: Date: November 2 2006 1:33pm Subject: bk commit into 4.1 tree (thek:1.2613) BUG#22828 List-Archive: http://lists.mysql.com/commits/14739 X-Bug: 22828 Message-Id: <200611021233.kA2CXT85016432@kpdesk.mysql.com> Below is the list of changes that have just been committed into a local 4.1 repository of thek. When thek 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-11-02 13:33:26+01:00, thek@stripped +1 -0 Bug#22828 complementary patch: - 'false' not defined in C, use FALSE instead. mysys/my_lock.c@stripped, 2006-11-02 13:33:23+01:00, thek@stripped +1 -1 Fixed error in windows built: 'false' not defined in C, use FALSE instead. # 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: thek # Host: kpdesk.mysql.com # Root: /home/thek/dev/mysql-4.1-maint --- 1.13/mysys/my_lock.c 2006-11-02 13:33:29 +01:00 +++ 1.14/mysys/my_lock.c 2006-11-02 13:33:29 +01:00 @@ -111,7 +111,7 @@ int my_lock(File fd, int locktype, my_of #elif defined(HAVE_LOCKING) /* Windows */ { - my_bool error= false; + my_bool error= FALSE; pthread_mutex_lock(&my_file_info[fd].mutex); if (MyFlags & MY_SEEK_NOT_DONE) {