Use indicative dir names when creating

This commit is contained in:
Arun Prakash Jana 2020-01-22 00:00:33 +05:30
parent 8d6f766e75
commit a87be62204
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 2 deletions

View File

@ -5796,7 +5796,7 @@ static bool setup_config(void)
xstrlcpy(plugindir, cfgdir, len);
DPRINTF_S(plugindir);
if (!xmktree(cfgdir, TRUE)) {
if (!xmktree(plugindir, TRUE)) {
xerror();
return FALSE;
}
@ -5808,7 +5808,7 @@ static bool setup_config(void)
xstrlcpy(sessiondir, cfgdir, len);
DPRINTF_S(sessiondir);
if (!xmktree(cfgdir, TRUE)) {
if (!xmktree(sessiondir, TRUE)) {
xerror();
return FALSE;
}