Below is the list of changes that have just been committed into a local
5.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.1953 05/11/03 11:52:22 joerg@stripped +1 -0
client/mysqltest.c : Move variable declarations to scope start, this is pure C.
client/mysqltest.c
1.167 05/11/03 11:52:16 joerg@stripped +2 -2
This is C, so variables must be declared at the start of a scope. Move two of them.
# 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: /M51/clone-5.1
--- 1.166/client/mysqltest.c 2005-11-02 11:16:25 +01:00
+++ 1.167/client/mysqltest.c 2005-11-03 11:52:16 +01:00
@@ -2172,6 +2172,8 @@
int free_con_sock= 0;
int error= 0;
int create_conn= 1;
+ VAR* var_port;
+ VAR *var_sock;
DBUG_ENTER("do_connect");
DBUG_PRINT("enter",("connect: %s",p));
@@ -2191,7 +2193,6 @@
p= safe_get_param(p, &con_db, "Missing connection db", 1);
/* Port */
- VAR* var_port;
p= safe_get_param(p, &con_port_str, "Missing connection port", 0);
if (*con_port_str)
{
@@ -2214,7 +2215,6 @@
}
/* Sock */
- VAR *var_sock;
p= safe_get_param(p, &con_sock, "Missing connection socket", 0);
if (*con_sock)
{
| Thread |
|---|
| • bk commit into 5.1 tree (joerg:1.1953) | Joerg Bruehe | 3 Nov |