xs_printf writes the terminating null byte of the passed string to
Xenstore. When reading, the null byte is returned in the following form
which confuses tools:
sector-size = "512\000"
This patch removes the null byte from the data to write.
Signed-off-by: Kevin Wolf <kwolf@xxxxxxx>
Index: xen-unstable.hg/tools/blktap/lib/xs_api.c
===================================================================
--- xen-unstable.hg.orig/tools/blktap/lib/xs_api.c
+++ xen-unstable.hg/tools/blktap/lib/xs_api.c
@@ -132,7 +132,7 @@ int xs_printf(struct xs_handle *h, const
return ENOMEM;
}
- ret = xs_write(h, XBT_NULL, path, buf, strlen(buf)+1);
+ ret = xs_write(h, XBT_NULL, path, buf, strlen(buf));
free(buf);
free(path);
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|