Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-01-13 12:02:47 +0400
committerFelix Fietkau <nbd@openwrt.org>2013-01-13 12:02:51 +0400
commit4b5f278195c4bda222759682a2f9167646d05c77 (patch)
tree575a04d480b7097d14f3690edb6ad068aee19123 /blobmsg.c
parent2f74dbad14b42c3a6687b093210b8604d0b235cd (diff)
blobmsg: allow BLOBMSG_TYPE_UNSPEC attributes, treat them as null for JSON conversion
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'blobmsg.c')
-rw-r--r--blobmsg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/blobmsg.c b/blobmsg.c
index e04fa53..8e2d73a 100644
--- a/blobmsg.c
+++ b/blobmsg.c
@@ -21,6 +21,7 @@ static const int blob_type[__BLOBMSG_TYPE_LAST] = {
[BLOBMSG_TYPE_INT32] = BLOB_ATTR_INT32,
[BLOBMSG_TYPE_INT64] = BLOB_ATTR_INT64,
[BLOBMSG_TYPE_STRING] = BLOB_ATTR_STRING,
+ [BLOBMSG_TYPE_UNSPEC] = BLOB_ATTR_BINARY,
};
static uint16_t
@@ -52,7 +53,7 @@ bool blobmsg_check_attr(const struct blob_attr *attr, bool name)
len = blobmsg_data_len(attr);
data = blobmsg_data(attr);
- if (!id || id > BLOBMSG_TYPE_LAST)
+ if (id > BLOBMSG_TYPE_LAST)
return false;
if (!blob_type[id])