Alistair Leslie-Hughes : oledb32: Properties aren't case sensitive.

Alexandre Julliard julliard at winehq.org
Mon Jun 17 14:07:47 CDT 2013


Module: wine
Branch: master
Commit: 57d0efa45994d8e8cb35720e3c76e1cfac6be420
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=57d0efa45994d8e8cb35720e3c76e1cfac6be420

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Mon Jun 17 21:48:14 2013 +1000

oledb32: Properties aren't case sensitive.

---

 dlls/oledb32/datainit.c       |    2 +-
 dlls/oledb32/tests/database.c |    2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/dlls/oledb32/datainit.c b/dlls/oledb32/datainit.c
index 13d9f55..58bd812 100644
--- a/dlls/oledb32/datainit.c
+++ b/dlls/oledb32/datainit.c
@@ -368,7 +368,7 @@ static HRESULT set_dbpropset(BSTR name, BSTR value, DBPROPSET **propset)
 
         n = (min+max)/2;
 
-        r = strcmpW(dbproperties[n].name, name);
+        r = strcmpiW(dbproperties[n].name, name);
         if (!r)
             break;
 
diff --git a/dlls/oledb32/tests/database.c b/dlls/oledb32/tests/database.c
index 518bba7..216adc6 100644
--- a/dlls/oledb32/tests/database.c
+++ b/dlls/oledb32/tests/database.c
@@ -97,6 +97,7 @@ static void test_database(void)
          'D','a','t','a',' ','S','o','u','r','c','e','=','d','u','m','m','y',';',
          'P','e','r','s','i','s','t',' ','S','e','c','u','r','i','t','y',' ','I','n','f','o','=','F','a','l','s','e',';',0};
     static WCHAR initstring_default[] = {'D','a','t','a',' ','S','o','u','r','c','e','=','d','u','m','m','y',';',0};
+    static WCHAR initstring_lower[] = {'d','a','t','a',' ','s','o','u','r','c','e','=','d','u','m','m','y',';',0};
     IDataInitialize *datainit = NULL;
     HRESULT hr;
 
@@ -111,6 +112,7 @@ static void test_database(void)
     test_GetDataSource(NULL);
     test_GetDataSource(initstring_jet);
     test_GetDataSource(initstring_default);
+    test_GetDataSource(initstring_lower);
 }
 
 START_TEST(database)




More information about the wine-cvs mailing list