summaryrefslogtreecommitdiff
path: root/ubusd_proto.c
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-04-21 01:01:26 +0200
committerJohn Crispin <blogic@openwrt.org>2015-06-18 19:01:17 +0200
commit8c992a556b2e243fd6b41163a3ed1e650a47b60a (patch)
tree1525d648673d66643855b187f7afedcc77a7cd90 /ubusd_proto.c
parent0bb927125facc3c36eced0e02326610e54a525cd (diff)
downloadubus-8c992a556b2e243fd6b41163a3ed1e650a47b60a.tar.gz
make ubus_parse_msg() none static
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'ubusd_proto.c')
-rw-r--r--ubusd_proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ubusd_proto.c b/ubusd_proto.c
index caede10..e80c400 100644
--- a/ubusd_proto.c
+++ b/ubusd_proto.c
@@ -34,7 +34,7 @@ static const struct blob_attr_info ubus_policy[UBUS_ATTR_MAX] = {
[UBUS_ATTR_METHOD] = { .type = BLOB_ATTR_STRING },
};
-static struct blob_attr **ubus_parse_msg(struct blob_attr *msg)
+struct blob_attr **ubus_parse_msg(struct blob_attr *msg)
{
blob_parse(msg, attrbuf, ubus_policy, UBUS_ATTR_MAX);
return attrbuf;