summaryrefslogtreecommitdiffstats
path: root/package/uci/patches
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-10-14 00:14:30 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-10-14 00:14:30 +0000
commit02ada62fabc1533fe5915adf520506b556b9cf94 (patch)
treea30fbb01c6ff47ff54f5848474c80fbba702e72c /package/uci/patches
parent68aa4b1beeb15ea5d3d21848de93f8ce86d60088 (diff)
uci: update to 2010-09-28
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23430 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uci/patches')
-rw-r--r--package/uci/patches/120-uci_trigger.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/uci/patches/120-uci_trigger.patch b/package/uci/patches/120-uci_trigger.patch
index a1454a37b..03c3760f9 100644
--- a/package/uci/patches/120-uci_trigger.patch
+++ b/package/uci/patches/120-uci_trigger.patch
@@ -65,7 +65,7 @@
+
+struct trigger_set_op {
+ struct uci_package *p;
-+ struct uci_history *h;
++ struct uci_delta *h;
+};
+
+static int trigger_set(lua_State *L)
@@ -73,7 +73,7 @@
+ struct trigger_set_op *so =
+ (struct trigger_set_op *)lua_touserdata(L, 1);
+ struct uci_package *p = so->p;
-+ struct uci_history *h = so->h;
++ struct uci_delta *h = so->h;
+ struct uci_context *ctx = p->ctx;
+
+ /* ignore non-standard savedirs/configdirs
@@ -139,7 +139,7 @@
+
+#endif
+
-+static void trigger_set_hook(const struct uci_hook_ops *ops, struct uci_package *p, struct uci_history *h)
++static void trigger_set_hook(const struct uci_hook_ops *ops, struct uci_package *p, struct uci_delta *h)
+{
+ struct trigger_set_op so;
+