Mercurial > p > mysql-python > mysqldb-2
comparison _mysql_connections.c @ 21:bb552e789992 MySQLdb
Fix #1808476
author | adustman |
---|---|
date | Tue, 01 Apr 2008 16:16:14 +0000 |
parents | b70cce9bd065 |
children | 25c5d3b241ba |
comparison
equal
deleted
inserted
replaced
20:0b7f85cb8f4f | 21:bb552e789992 |
---|---|
13 char *key = NULL, *cert = NULL, *ca = NULL, | 13 char *key = NULL, *cert = NULL, *ca = NULL, |
14 *capath = NULL, *cipher = NULL; | 14 *capath = NULL, *cipher = NULL; |
15 #endif | 15 #endif |
16 char *host = NULL, *user = NULL, *passwd = NULL, | 16 char *host = NULL, *user = NULL, *passwd = NULL, |
17 *db = NULL, *unix_socket = NULL; | 17 *db = NULL, *unix_socket = NULL; |
18 uint port = MYSQL_PORT; | 18 unsigned int port = 0; |
19 uint client_flag = 0; | 19 unsigned int client_flag = 0; |
20 static char *kwlist[] = { "host", "user", "passwd", "db", "port", | 20 static char *kwlist[] = { "host", "user", "passwd", "db", "port", |
21 "unix_socket", "conv", | 21 "unix_socket", "conv", |
22 "connect_timeout", "compress", | 22 "connect_timeout", "compress", |
23 "named_pipe", "init_command", | 23 "named_pipe", "init_command", |
24 "read_default_file", "read_default_group", | 24 "read_default_file", "read_default_group", |