List:Internals« Previous MessageNext Message »
From:knielsen Date:November 29 2005 2:18pm
Subject:bk commit into 5.1 tree (knielsen:1.1985)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of mysqldev. When mysqldev 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
  1.1985 05/11/29 15:18:31 knielsen@stripped +1 -0
  More Win32 byte* vs. char* fixes.

  sql/sql_plugin.cc
    1.3 05/11/29 13:17:15 knielsen@stripped +2 -2
    More Win32 byte* vs. char* fixes.

# 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:	knielsen
# Host:	production.mysql.com
# Root:	/data0/mysqldev/my/mysql-5.1.3-fixes

--- 1.2/sql/sql_plugin.cc	2005-11-24 05:15:31 +01:00
+++ 1.3/sql/sql_plugin.cc	2005-11-29 13:17:15 +01:00
@@ -208,14 +208,14 @@
     for (i= 0; i < MYSQL_MAX_PLUGIN_TYPE_NUM; i++)
     {
       struct st_plugin_int *plugin= (st_plugin_int *)
-        hash_search(&plugin_hash[i], name->str, name->length);
+        hash_search(&plugin_hash[i], (const byte *)name->str, name->length);
       if (plugin) 
         DBUG_RETURN(plugin);
     }
   }
   else
     DBUG_RETURN((st_plugin_int *)
-        hash_search(&plugin_hash[type], name->str, name->length));
+        hash_search(&plugin_hash[type], (const byte *)name->str, name->length));
   DBUG_RETURN(0);
 }
 
Thread
bk commit into 5.1 tree (knielsen:1.1985)knielsen29 Nov