msdasql: Correct default dialect logic.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7d686c2263
commit
c8b0e5b138
|
@ -847,7 +847,7 @@ static HRESULT WINAPI command_SetCommandText(ICommandText *iface, REFGUID dialec
|
|||
struct command *command = impl_from_ICommandText( iface );
|
||||
TRACE("%p, %s, %s\n", command, debugstr_guid(dialect), debugstr_w(commandstr));
|
||||
|
||||
if (IsEqualGUID(&DBGUID_DEFAULT, dialect))
|
||||
if (!IsEqualGUID(&DBGUID_DEFAULT, dialect))
|
||||
FIXME("Currently non Default Dialect isn't supported\n");
|
||||
|
||||
heap_free(command->query);
|
||||
|
|
Loading…
Reference in New Issue