make ubus_msg_ref static
authorFelix Fietkau <nbd@openwrt.org>
Mon, 7 Feb 2011 01:41:56 +0000 (02:41 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 7 Feb 2011 01:41:56 +0000 (02:41 +0100)
ubusd.c
ubusd.h

diff --git a/ubusd.c b/ubusd.c
index a283f597a1c916e4d56aa38cecfc3c0e4554b781..60c0404f1052d8793339a52b09222189c8d2b2e1 100644 (file)
--- a/ubusd.c
+++ b/ubusd.c
@@ -26,7 +26,7 @@ static struct ubus_msg_buf *ubus_msg_unshare(struct ubus_msg_buf *ub)
        return ub;
 }
 
-struct ubus_msg_buf *ubus_msg_ref(struct ubus_msg_buf *ub)
+static struct ubus_msg_buf *ubus_msg_ref(struct ubus_msg_buf *ub)
 {
        if (ub->refcount == ~0)
                return ubus_msg_unshare(ub);
diff --git a/ubusd.h b/ubusd.h
index 4959a91f1d8200ee38cd7e002abad4623fc023ec..6d6e18142dd406d7104c0379c183315203511327 100644 (file)
--- a/ubusd.h
+++ b/ubusd.h
@@ -46,7 +46,6 @@ struct ubus_path {
 
 struct ubus_msg_buf *ubus_msg_new(void *data, int len, bool shared);
 void ubus_msg_send(struct ubus_client *cl, struct ubus_msg_buf *ub, bool free);
-struct ubus_msg_buf *ubus_msg_ref(struct ubus_msg_buf *ub);
 void ubus_msg_free(struct ubus_msg_buf *ub);
 
 void ubusd_receive_message(struct ubus_client *cl, struct ubus_msg_buf *ub);