diff options
| author | 2020-01-22 00:00:33 +0530 | |
|---|---|---|
| committer | 2020-01-22 00:00:33 +0530 | |
| commit | a87be622049622b4a9af411f7cbd552cd7860a43 (patch) | |
| tree | cb70caaee962766cabcd2907bd9bc9c071fb2aac | |
| parent | 8d6f766e75a4e0d4bb93b03562372848f12ea773 (diff) | |
| download | nnn-a87be622049622b4a9af411f7cbd552cd7860a43.tar.gz | |
Use indicative dir names when creating
| -rw-r--r-- | src/nnn.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |