diff _mysql_connections.c @ 21:bb552e789992 MySQLdb

Fix #1808476
author adustman
date Tue, 01 Apr 2008 16:16:14 +0000
parents b70cce9bd065
children 25c5d3b241ba
line wrap: on
line diff
--- a/_mysql_connections.c	Tue Apr 01 16:06:57 2008 +0000
+++ b/_mysql_connections.c	Tue Apr 01 16:16:14 2008 +0000
@@ -15,8 +15,8 @@
 #endif
 	char *host = NULL, *user = NULL, *passwd = NULL,
 		*db = NULL, *unix_socket = NULL;
-	uint port = MYSQL_PORT;
-	uint client_flag = 0;
+	unsigned int port = 0;
+	unsigned int client_flag = 0;
 	static char *kwlist[] = { "host", "user", "passwd", "db", "port",
 				  "unix_socket", "conv",
 				  "connect_timeout", "compress",