List:Commits« Previous MessageNext Message »
From:msvensson Date:April 18 2007 4:38pm
Subject:bk commit into 4.1 tree (msvensson:1.2647)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 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, 2007-04-18 18:38:03+02:00, msvensson@stripped +1 -0
  Use my_snprintf instead of snprintf

  client/mysqltest.c@stripped, 2007-04-18 18:38:02+02:00, msvensson@stripped +1 -1
    Use my_snprintf instead of snprintf

# 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:	pilot.blaudden
# Root:	/home/msvensson/mysql/mysql-4.1-maint

--- 1.256/client/mysqltest.c	2007-04-18 16:56:16 +02:00
+++ 1.257/client/mysqltest.c	2007-04-18 18:38:02 +02:00
@@ -1321,7 +1321,7 @@ void var_set_string(const char* name, co
 void var_set_int(const char* name, int value)
 {
   char buf[21];
-  snprintf(buf, sizeof(buf), "%d", value);
+  my_snprintf(buf, sizeof(buf), "%d", value);
   var_set_string(name, buf);
 }
 
Thread
bk commit into 4.1 tree (msvensson:1.2647)msvensson18 Apr