[OpenWrt-Devel] [PATCH 3/3] [rpcd] file: be consistent with string termination character

2015-05-11 Thread Luka Perkov
Signed-off-by: Luka Perkov 
---
 file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/file.c b/file.c
index fe1bc39..64e7c28 100644
--- a/file.c
+++ b/file.c
@@ -247,7 +247,7 @@ rpc_file_read(struct ubus_context *ctx, struct ubus_object 
*obj,
}
}
 
-   *(wbuf + len) = 0;
+   *(wbuf + len) = '\0';
blobmsg_add_string_buffer(&buf);
 
ubus_send_reply(ctx, req, buf.head);
-- 
2.4.0
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH 3/3] [rpcd] file: be consistent with string termination character

2015-05-10 Thread Luka Perkov
Signed-off-by: Luka Perkov 
---
 file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/file.c b/file.c
index 86783e0..4c00ae2 100644
--- a/file.c
+++ b/file.c
@@ -253,7 +253,7 @@ rpc_file_read(struct ubus_context *ctx, struct ubus_object 
*obj,
free(data);
}
 
-   *(wbuf + len) = 0;
+   *(wbuf + len) = '\0';
blobmsg_add_string_buffer(&buf);
 
ubus_send_reply(ctx, req, buf.head);
-- 
2.4.0
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel