mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 18:43:02 +01:00
Fix case problem in username - thanks Pavel Zotov.
This commit is contained in:
parent
7e293a3edd
commit
655c7eb541
@ -4959,7 +4959,7 @@ static processing_state frontend(const std::string& statement)
|
|||||||
}
|
}
|
||||||
else if (clause == "USER")
|
else if (clause == "USER")
|
||||||
{
|
{
|
||||||
usr = node.args[i + 1].processedText.c_str();
|
usr = node.args[i + 1].rawText.c_str();
|
||||||
i += 2;
|
i += 2;
|
||||||
}
|
}
|
||||||
else if (clause == "PASSWORD")
|
else if (clause == "PASSWORD")
|
||||||
|
Loading…
Reference in New Issue
Block a user