From abbc140e8d9c11360bea3c614608290aa051e673 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 29 Jul 2011 12:56:18 +0200 Subject: [PATCH] add BLOBMSG_TYPE_BOOL as an alias for BLOBMSG_TYPE_INT8 --- blobmsg.h | 3 ++- blobmsg_json.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/blobmsg.h b/blobmsg.h index e9a0b69..2fb61d4 100644 --- a/blobmsg.h +++ b/blobmsg.h @@ -31,7 +31,8 @@ enum blobmsg_type { BLOBMSG_TYPE_INT16, BLOBMSG_TYPE_INT8, __BLOBMSG_TYPE_LAST, - BLOBMSG_TYPE_LAST = __BLOBMSG_TYPE_LAST - 1 + BLOBMSG_TYPE_LAST = __BLOBMSG_TYPE_LAST - 1, + BLOBMSG_TYPE_BOOL = BLOBMSG_TYPE_INT8, }; struct blobmsg_hdr { diff --git a/blobmsg_json.c b/blobmsg_json.c index 0539bd1..3053fa3 100644 --- a/blobmsg_json.c +++ b/blobmsg_json.c @@ -228,7 +228,7 @@ static void blobmsg_format_element(struct strbuf *s, struct blob_attr *attr, boo data_str = buf; switch(blob_id(attr)) { - case BLOBMSG_TYPE_INT8: + case BLOBMSG_TYPE_BOOL: sprintf(buf, "%s", *(uint8_t *)data ? "true" : "false"); break; case BLOBMSG_TYPE_INT32: -- 2.11.0