summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-08-28 08:31:17 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-08-28 22:13:42 +0200
commitb8bd6bda6780f2afb20db2e557327842e47f5423 (patch)
tree680e4939998975883637d508fb94a833533e92ed
parent98be8c79d5a515ff53ff6931a68490f08da4b661 (diff)
downloadsssd-b8bd6bda6780f2afb20db2e557327842e47f5423.tar.gz
sssd-b8bd6bda6780f2afb20db2e557327842e47f5423.tar.xz
sssd-b8bd6bda6780f2afb20db2e557327842e47f5423.zip
MONITOR: Move function declaration out of conditional build
Function monitor_config_file_fallback was defined inside of conditional block "#ifdef HAVE_SYS_INOTIFY_H", but it was also used out of this block. This patch move declaration of function before start of conditional build section.
-rw-r--r--src/monitor/monitor.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c
index 67811ac16..121081cb8 100644
--- a/src/monitor/monitor.c
+++ b/src/monitor/monitor.c
@@ -1636,6 +1636,12 @@ done:
return ret;
}
+errno_t monitor_config_file_fallback(TALLOC_CTX *mem_ctx,
+ struct mt_ctx *ctx,
+ const char *file,
+ monitor_reconf_fn fn,
+ bool ignore_missing);
+
#ifdef HAVE_SYS_INOTIFY_H
static void process_config_file(struct tevent_context *ev,
struct tevent_timer *te,
@@ -1791,11 +1797,6 @@ done:
talloc_free(tmp_ctx);
}
-errno_t monitor_config_file_fallback(TALLOC_CTX *mem_ctx,
- struct mt_ctx *ctx,
- const char *file,
- monitor_reconf_fn fn,
- bool ignore_missing);
static void rewatch_config_file(struct tevent_context *ev,
struct tevent_timer *te,
struct timeval t, void *ptr)