8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:03:03 +01:00

Fix case problem in username - thanks Pavel Zotov.

This commit is contained in:
Adriano dos Santos Fernandes 2025-01-13 22:02:14 -03:00
parent 7e293a3edd
commit 655c7eb541

View File

@ -4959,7 +4959,7 @@ static processing_state frontend(const std::string& statement)
}
else if (clause == "USER")
{
usr = node.args[i + 1].processedText.c_str();
usr = node.args[i + 1].rawText.c_str();
i += 2;
}
else if (clause == "PASSWORD")