mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Make DSN and DBQ extraction from connection string case insensitive
This commit is contained in:
parent
1097a48b80
commit
4cf76bd7db
@ -213,7 +213,7 @@ gchar* ExtractDSN (ConnectParams* params, const gchar* connectString)
|
||||
/*
|
||||
* Position ourselves to the beginning of "DSN"
|
||||
*/
|
||||
p = strstr (connectString, "DSN");
|
||||
p = strcasestr (connectString, "DSN");
|
||||
if (!p) return NULL;
|
||||
/*
|
||||
* Position ourselves to the "="
|
||||
@ -245,7 +245,7 @@ gchar* ExtractDBQ (ConnectParams* params, const gchar* connectString)
|
||||
/*
|
||||
* Position ourselves to the beginning of "DSN"
|
||||
*/
|
||||
p = strstr (connectString, "DBQ");
|
||||
p = strcasestr (connectString, "DBQ");
|
||||
if (!p) return NULL;
|
||||
/*
|
||||
* Position ourselves to the "="
|
||||
|
Loading…
Reference in New Issue
Block a user