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

SortedObjectsArray related changes

This commit is contained in:
alexpeshkoff 2004-11-29 10:12:09 +00:00
parent ec8f70387f
commit e1aea93824

View File

@ -122,9 +122,9 @@ namespace {
time_t lastAttempt;
FailedLogin(Firebird::MemoryPool& p)
: login(p), failCount(0), lastAttempt(time(0)) {}
static const Firebird::string& generate(const void* sender, const FailedLogin* f)
static const Firebird::string* generate(const void* sender, const FailedLogin* f)
{
return f->login;
return &(f->login);
}
};