From: Jo-Philipp Wich Date: Sat, 16 Oct 2010 19:48:11 +0000 (+0000) Subject: freifunk-watchdog: copy with API change in latest uci X-Git-Tag: 0.10.0~597 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=f01178a19a94abfd98442cec532fcd43e91009b0 freifunk-watchdog: copy with API change in latest uci --- diff --git a/contrib/package/freifunk-watchdog/src/ucix.c b/contrib/package/freifunk-watchdog/src/ucix.c index 634d9e16c..44de25903 100644 --- a/contrib/package/freifunk-watchdog/src/ucix.c +++ b/contrib/package/freifunk-watchdog/src/ucix.c @@ -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(); +#ifdef uci_to_delta + uci_add_delta_path(ctx, "/var/state"); +#else uci_add_history_path(ctx, "/var/state"); +#endif if(uci_load(ctx, config_file, NULL) != UCI_OK) { return NULL;