freifunk-watchdog: copy with API change in latest uci
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 16 Oct 2010 19:48:11 +0000 (19:48 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 16 Oct 2010 19:48:11 +0000 (19:48 +0000)
contrib/package/freifunk-watchdog/src/ucix.c

index 634d9e1..44de259 100644 (file)
@@ -40,7 +40,11 @@ static inline int ucix_get_ptr(struct uci_context *ctx, const char *p, const cha
 struct uci_context* ucix_init(const char *config_file)
 {
        struct uci_context *ctx = uci_alloc_context();
 struct uci_context* ucix_init(const char *config_file)
 {
        struct uci_context *ctx = uci_alloc_context();
+#ifdef uci_to_delta
+       uci_add_delta_path(ctx, "/var/state");
+#else
        uci_add_history_path(ctx, "/var/state");
        uci_add_history_path(ctx, "/var/state");
+#endif
        if(uci_load(ctx, config_file, NULL) != UCI_OK)
        {
                return NULL;
        if(uci_load(ctx, config_file, NULL) != UCI_OK)
        {
                return NULL;