bk commit - MyODBC 3.51 (1.469)
am 19.05.2005 22:07:09 von Dean EllisBelow is the list of changes that have just been commited into a local
MyODBC 3.51 repository of 'dellis'. When 'dellis' does a push, they will
be propogaged to the main repository and within 2 hours after the push
into the public repository.
For more information on how to access the public repository see:
http://www.mysql.com/products/myodbc/faq_2.html#Development_ source
You can also browse the changes from public repository:
Complete repository: http://mysql.bkbits.net:8080/myodbc3/
This changeset : http://mysql.bkbits.net:8080/myodbc3/cset@1.469
ChangeSet
1.469 05/05/19 15:07:08 dean@mysql.com +1 -0
setup.c:
Correcting Windows compilation failure (wrong number of args to int2str() with newer MySQL versions).
driver/setup.c
1.43 05/05/19 15:06:02 dean@mysql.com +4 -0
Correcting Windows compilation failure.
# 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: dean
# Host: niflheim.lan
# Root: /home/dellis/mysqlab/bk/myodbc-3.51
--- 1.42/driver/setup.c 2005-01-28 13:33:50 -06:00
+++ 1.43/driver/setup.c 2005-05-19 15:06:02 -05:00
@@ -201,7 +201,11 @@
if (!lpsetupdlg->aAttr[KEY_PORT].fSupplied)
{
char buff[10];
+#if MYSQL_VERSION_ID >= 40100
+ int2str(MYSQL_PORT,buff,10,0);
+#else
int2str(MYSQL_PORT,buff,10);
+#endif
SQLGetPrivateProfileString(lpszDSN, INI_KPORT,
buff,
lpsetupdlg->aAttr[KEY_PORT].szAttr,
--
MySQL ODBC Mailing List
For list archives: http://lists.mysql.com/myodbc
To unsubscribe: http://lists.mysql.com/myodbc?unsub=gcdmo-myodbc@m.gmane.org