mirror of https://gitee.com/bigwinds/arangodb
fix typo
This commit is contained in:
parent
b66796e69f
commit
f8ecab9216
|
@ -2182,11 +2182,12 @@ char* TRI_LocateConfigDirectory () {
|
||||||
v = TRI_LocateInstallDirectory();
|
v = TRI_LocateInstallDirectory();
|
||||||
|
|
||||||
if (v != NULL) {
|
if (v != NULL) {
|
||||||
#if defined(_SYSCONFDIR_)
|
if (v != NULL) {
|
||||||
|
#ifdef _SYSCONFDIR_
|
||||||
TRI_AppendString(&v, _SYSCONFDIR_);
|
TRI_AppendString(&v, _SYSCONFDIR_);
|
||||||
#else
|
#else
|
||||||
TRI_AppendString(&v, "etc\\arangodb\\");
|
TRI_AppendString(&v, "etc\\arangodb\\");
|
||||||
#fi
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
return v;
|
return v;
|
||||||
|
|
Loading…
Reference in New Issue