From 4cf76bd7dbe8526f5df5110c83b62f8630a65d93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Luthi?= Date: Mon, 3 Jul 2023 18:43:40 +0200 Subject: [PATCH] Make DSN and DBQ extraction from connection string case insensitive --- src/odbc/connectparams.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/odbc/connectparams.c b/src/odbc/connectparams.c index 712387b..bece49d 100644 --- a/src/odbc/connectparams.c +++ b/src/odbc/connectparams.c @@ -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 "="