From 3ec18e0746b739ef8044755c0ed82811d325cffe Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 12 Jun 2008 09:31:50 +0200 Subject: [PATCH] Load the right exclude file in the user directory. --- src/csync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/csync.c b/src/csync.c index a75a59734..efc1319b6 100644 --- a/src/csync.c +++ b/src/csync.c @@ -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; }