From: Date: June 20 2005 6:54pm Subject: bk commit into 4.1 tree (jimw:1.2301) BUG#10840 List-Archive: http://lists.mysql.com/internals/26208 X-Bug: 10840 Message-Id: <200506201654.j5KGsoiW015452@production.mysql.com> Below is the list of changes that have just been committed into a local 4.1 repository of jwinstead. When jwinstead 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.2301 05/06/20 18:54:45 jimw@stripped +1 -0 Fix handling of command-line on Windows, missed as part of earlier commit. (Bug #10840) client/mysql.cc 1.208 05/06/20 18:53:54 jimw@stripped +2 -1 Add cast of unsigned value stored in signed char # 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: jimw # Host: production.mysql.com # Root: /usersnfs/jwinstead/my/mysql-4.1-10840 --- 1.207/client/mysql.cc 2005-06-09 19:44:09 +02:00 +++ 1.208/client/mysql.cc 2005-06-20 18:53:54 +02:00 @@ -989,7 +989,8 @@ a nil, it still needs the space in the linebuffer for it. This is, naturally, undocumented. */ - } while (linebuffer[0] <= linebuffer[1] + 1); + } while ((unsigned char)linebuffer[0] <= + (unsigned char)linebuffer[1] + 1); line= buffer.c_ptr(); #endif /* __NETWARE__ */ #else