mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 05:23:03 +01:00
Misc
This commit is contained in:
parent
eba9aea3c4
commit
9a19c76ce1
@ -80,7 +80,8 @@ namespace {
|
||||
return Firebird::PathName(Config::getExternalFileAccess());
|
||||
}
|
||||
public:
|
||||
explicit ExternalFileDirectoryList(MemoryPool& p) : DirectoryList(p)
|
||||
explicit ExternalFileDirectoryList(MemoryPool& p)
|
||||
: DirectoryList(p)
|
||||
{
|
||||
initialize();
|
||||
}
|
||||
|
@ -130,7 +130,8 @@ namespace {
|
||||
return Firebird::PathName(Config::getUdfAccess());
|
||||
}
|
||||
public:
|
||||
explicit UdfDirectoryList(MemoryPool& p) : DirectoryList(p)
|
||||
explicit UdfDirectoryList(MemoryPool& p)
|
||||
: DirectoryList(p)
|
||||
{
|
||||
initialize();
|
||||
}
|
||||
|
@ -382,9 +382,14 @@ SLONG ISC_set_prefix(const TEXT* sw, const TEXT* path)
|
||||
* To avoid it accumulate values for switches locally,
|
||||
* and finally when called with sw==0, use them in correct order.
|
||||
*/
|
||||
static struct ESwitches {
|
||||
static struct ESwitches
|
||||
{
|
||||
Firebird::PathName prefix, lockPrefix, msgPrefix;
|
||||
explicit ESwitches(MemoryPool& p) : prefix(p), lockPrefix(p), msgPrefix(p) { }
|
||||
|
||||
explicit ESwitches(MemoryPool& p)
|
||||
: prefix(p), lockPrefix(p), msgPrefix(p)
|
||||
{
|
||||
}
|
||||
}* eSw = 0;
|
||||
|
||||
if (! sw)
|
||||
|
@ -1815,7 +1815,8 @@ namespace {
|
||||
return Firebird::PathName(Config::getDatabaseAccess());
|
||||
}
|
||||
public:
|
||||
explicit DatabaseDirectoryList(MemoryPool& p) : DirectoryList(p)
|
||||
explicit DatabaseDirectoryList(MemoryPool& p)
|
||||
: DirectoryList(p)
|
||||
{
|
||||
initialize();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user