diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-04-10 14:08:08 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-04-10 14:08:08 +0000 |
commit | 69f2dc222a5df39a6998c19032a097d7d27b644f (patch) | |
tree | 230786aeae86d522e3a9785905d7dba82068438c /databases/mysql-connector-odbc/files/patch-results.c | |
parent | - Fix detect of wchar_t on FreeBSD. Using _BSD_CT_RUNE_T_ is not sufficient (diff) |
- Update to 3.51.06
PR: ports/64059
Submitted by: Sergey Prihodko <sergey@migsoft.com.ua>
This patch by: Erik H. Bakke <ebakke@trolltech.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=106657
Diffstat (limited to 'databases/mysql-connector-odbc/files/patch-results.c')
-rw-r--r-- | databases/mysql-connector-odbc/files/patch-results.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/databases/mysql-connector-odbc/files/patch-results.c b/databases/mysql-connector-odbc/files/patch-results.c deleted file mode 100644 index 3f8b6b8da42a..000000000000 --- a/databases/mysql-connector-odbc/files/patch-results.c +++ /dev/null @@ -1,19 +0,0 @@ ---- results.c 4 Dec 2001 18:47:05 -0000 1.1 -+++ results.c 2 Mar 2002 18:18:21 -0000 1.2 -@@ -743,14 +743,14 @@ - case SQL_C_SBIGINT: - { - if (rgbValue) -- *((longlong*) rgbValue)= atoll(value); -+ *((longlong*) rgbValue)= strtoll(value, NULL, 10); - *pcbValue=sizeof(longlong); - break; - } - case SQL_C_UBIGINT: - { - if (rgbValue) -- *((ulonglong*) rgbValue)= (ulonglong) atoll(value); -+ *((ulonglong*) rgbValue)= strtoull(value, NULL, 10); - *pcbValue=sizeof(ulonglong); - break; - } |