cmake: Find uci.h
[project/firewall3.git] / ubus.c
diff --git a/ubus.c b/ubus.c
index ef2c530..e5326f9 100644 (file)
--- a/ubus.c
+++ b/ubus.c
@@ -1,7 +1,7 @@
 /*
  * firewall3 - 3rd OpenWrt UCI firewall implementation
  *
- *   Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
+ *   Copyright (C) 2013 Jo-Philipp Wich <jo@mein.io>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -281,10 +281,12 @@ fw3_ubus_rules(struct blob_buf *b)
                                snprintf(comment, sizeof(comment), "ubus:%s[%s] rule %d",
                                         iface_name, iface_proto, n++);
 
-                               blobmsg_for_each_attr(ropt, rule, orem)
-                                       if (strcmp(blobmsg_name(ropt), "name") &&
-                                           strcmp(blobmsg_name(ropt), "device"))
+                               blobmsg_for_each_attr(ropt, rule, orem) {
+                                       if (!strcmp(blobmsg_name(ropt), "device"))
+                                               l3_device = blobmsg_get_string(ropt);
+                                       else if (strcmp(blobmsg_name(ropt), "name"))
                                                blobmsg_add_blob(b, ropt);
+                               }
 
                                blobmsg_add_string(b, "name", comment);
                                blobmsg_add_string(b, "device", l3_device);