From c97bcd2a409d94ac3ea44cc8884f448c61679709 Mon Sep 17 00:00:00 2001 From: paulbeach Date: Wed, 23 Sep 2009 13:30:41 +0000 Subject: [PATCH] _string will not compile on Darwin using gcc 4.2.1 --- src/jrd/scl.epp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jrd/scl.epp b/src/jrd/scl.epp index f506e1829d..befc99aad1 100644 --- a/src/jrd/scl.epp +++ b/src/jrd/scl.epp @@ -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);