List:Internals« Previous MessageNext Message »
From:Joerg Bruehe Date:August 24 2005 2:11pm
Subject:bk commit into 4.1 tree (joerg:1.2389)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of joerg. When joerg 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.2389 05/08/24 16:11:38 joerg@stripped +1 -0
  Merge

  mysys/charset.c
    1.140 05/08/24 16:11:38 joerg@stripped +0 -0
    SCCS merged

# 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:	joerg
# Host:	trift2.
# Root:	/M41/mysql-4.1/RESYNC

--- 1.139/mysys/charset.c	2005-08-17 15:11:25 +02:00
+++ 1.140/mysys/charset.c	2005-08-24 16:11:38 +02:00
@@ -663,21 +663,3 @@
   return fs_cset_cache;
 }
 #endif
-
-/*
-  Transforms a string into hex form.
- */
-char *bare_str_to_hex(char *to, const char *from, uint len)
-{
-  char *p= to;
-  uint i;
-  for (i= 0; i < len; i++, p+= 2)
-  {
-    /* val[i] is char. Casting to uchar helps greatly if val[i] < 0 */
-    uint tmp= (uint) (uchar) from[i];
-    p[0]= _dig_vec_upper[tmp >> 4];
-    p[1]= _dig_vec_upper[tmp & 15];
-  }
-  *p= 0;
-  return p; /* pointer to end 0 of 'to' */
-}
Thread
bk commit into 4.1 tree (joerg:1.2389)Joerg Bruehe24 Aug