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

_string will not compile on Darwin using gcc 4.2.1

This commit is contained in:
paulbeach 2009-09-23 13:30:41 +00:00
parent d1d8b30f1f
commit c97bcd2a40

View File

@ -425,7 +425,7 @@ void SCL_check_relation(const dsc* dsc_name, SecurityClass::flags_t mask)
}
SecurityClass* SCL_get_class(const TEXT* _string)
SecurityClass* SCL_get_class(const TEXT* par_string)
{
/**************************************
*
@ -444,11 +444,11 @@ SecurityClass* SCL_get_class(const TEXT* _string)
// Name may be absent or terminated with NULL or blank. Clean up name.
if (!_string) {
if (!par_string) {
return NULL;
}
Firebird::string string = _string;
Firebird::string string = par_string;
fb_utils::exact_name(string);