From: Felix Fietkau Date: Mon, 7 Feb 2011 00:12:07 +0000 (+0100) Subject: allow blobmsg_add_field to add arrays/tables X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=6bbde6e647043344288c1da5d53726508a718ab8 allow blobmsg_add_field to add arrays/tables --- diff --git a/blobmsg.c b/blobmsg.c index 570be4c..15dc750 100644 --- a/blobmsg.c +++ b/blobmsg.c @@ -188,10 +188,6 @@ blobmsg_add_field(struct blob_buf *buf, int type, const char *name, struct blob_attr *attr; void *data_dest; - if (type == BLOBMSG_TYPE_ARRAY || - type == BLOBMSG_TYPE_TABLE) - return -1; - attr = blobmsg_new(buf, type, name, len, &data_dest); if (!attr) return -1;