blob: f6590b300fb6881e40fdfc856a8bb06583706a4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- src/common/utils.cpp
+++ src/common/utils.cpp
@@ -1026,6 +1026,13 @@
PathUtils::concatPath(s, configDir[prefType], name);
return s;
}
+
+ // Set relative path to Engine12 dynamic library
+ if(prefType == Firebird::IConfigManager::DIR_PLUGINS)
+ {
+ s = name;
+ return s;
+ }
}
switch(prefType)
|