mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Load the right exclude file in the user directory.
This commit is contained in:
parent
35d32c045a
commit
3ec18e0746
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ int csync_init(CSYNC *ctx) {
|
|||
SAFE_FREE(exclude);
|
||||
|
||||
/* load exclude list */
|
||||
if (asprintf(&exclude, "%s/%s", ctx->options.config_dir, CSYNC_CONF_FILE) < 0) {
|
||||
if (asprintf(&exclude, "%s/%s", ctx->options.config_dir, CSYNC_EXCLUDE_FILE) < 0) {
|
||||
rc = -1;
|
||||
goto out;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue