summaryrefslogtreecommitdiffstats
path: root/daemon/cmp.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@trick.home.annexia.org>2009-07-18 10:43:52 +0100
committerRichard Jones <rjones@trick.home.annexia.org>2009-07-18 10:43:52 +0100
commit78029b529ad98769685d607230b70f71832d5906 (patch)
treef103cb7252ccca7efc3e39f4400f961d5972937c /daemon/cmp.c
parente8c954933b2bfb3bc3ead5a151d49d164f1a8eab (diff)
downloadlibguestfs-78029b529ad98769685d607230b70f71832d5906.tar.gz
libguestfs-78029b529ad98769685d607230b70f71832d5906.tar.xz
libguestfs-78029b529ad98769685d607230b70f71832d5906.zip
Make /sysroot path configurable.
Currently /sysroot is hard-coded throughout the daemon code. This patch turns the path into a variable so that we can change it in future, for example to allow standalone mode to be implemented. This patch was tested by running all the C API tests successfully.
Diffstat (limited to 'daemon/cmp.c')
-rw-r--r--daemon/cmp.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/daemon/cmp.c b/daemon/cmp.c
index f6500837..a2d92a33 100644
--- a/daemon/cmp.c
+++ b/daemon/cmp.c
@@ -31,7 +31,6 @@ int
do_equal (char *file1, char *file2)
{
char *file1buf, *file2buf;
- int file1len, file2len;
char *err;
int r;
@@ -39,24 +38,19 @@ do_equal (char *file1, char *file2)
ABS_PATH (file1, -1);
ABS_PATH (file2, -1);
- file1len = strlen (file1) + 32;
- file1buf = malloc (file1len);
+ file1buf = sysroot_path (file1);
if (file1buf == NULL) {
reply_with_perror ("malloc");
return -1;
}
- file2len = strlen (file2) + 32;
- file2buf = malloc (file2len);
+ file2buf = sysroot_path (file2);
if (file2buf == NULL) {
reply_with_perror ("malloc");
free (file1buf);
return -1;
}
- snprintf (file1buf, file1len, "/sysroot%s", file1);
- snprintf (file2buf, file2len, "/sysroot%s", file2);
-
r = commandr (NULL, &err, "cmp", "-s", file1buf, file2buf, NULL);
free (file1buf);