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

cleanup - noticed by Adriano

This commit is contained in:
alexpeshkoff 2010-01-25 11:37:50 +00:00
parent 4835887695
commit b67e973d1e

View File

@ -67,7 +67,6 @@ using namespace Firebird;
DATABASE DB = FILENAME "ODS.RDB"; DATABASE DB = FILENAME "ODS.RDB";
static bool check_hex(const UCHAR*, USHORT);
static bool check_number(const UCHAR*, USHORT); static bool check_number(const UCHAR*, USHORT);
static bool check_user_group(thread_db* tdbb, const UCHAR*, USHORT); static bool check_user_group(thread_db* tdbb, const UCHAR*, USHORT);
static bool check_string(const UCHAR*, const Firebird::MetaName&); static bool check_string(const UCHAR*, const Firebird::MetaName&);
@ -934,42 +933,6 @@ void SCL_release_all(SecurityClassList*& list)
} }
static bool check_hex(const UCHAR* acl, USHORT number)
{
/**************************************
*
* c h e c k _ h e x
*
**************************************
*
* Functional description
* Check a string against and acl numeric string. If they don't match,
* return true.
*
**************************************/
int n = 0;
USHORT l = *acl++;
if (l)
{
do {
const TEXT c = *acl++;
n *= 10;
if (c >= '0' && c <= '9') {
n += c - '0';
}
else if (c >= 'a' && c <= 'f') {
n += c - 'a' + 10;
}
else if (c >= 'A' && c <= 'F') {
n += c - 'A' + 10;
}
} while (--l);
}
return (n != number);
}
static bool check_number(const UCHAR* acl, USHORT number) static bool check_number(const UCHAR* acl, USHORT number)
{ {
/************************************** /**************************************