X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fcmp.c;h=bbf9c7466488753e736ab8495a54172ce5406d90;hp=56717c55cb5379505f834ad80502d9a9818fccfb;hb=d600342b7d29c0176ff96a7807ebb38303ecb3a6;hpb=84fc760439e82e6b3616abd0d1f9bd7d7eb01ec0 diff --git a/daemon/cmp.c b/daemon/cmp.c index 56717c5..bbf9c74 100644 --- a/daemon/cmp.c +++ b/daemon/cmp.c @@ -34,10 +34,6 @@ do_equal (const char *file1, const char *file2) char *err; int r; - NEED_ROOT (return -1); - ABS_PATH (file1, return -1); - ABS_PATH (file2, return -1); - file1buf = sysroot_path (file1); if (file1buf == NULL) { reply_with_perror ("malloc"); @@ -57,7 +53,7 @@ do_equal (const char *file1, const char *file2) free (file2buf); if (r == -1 || r > 1) { - reply_with_error ("cmp: %s", err); + reply_with_error ("%s", err); free (err); return -1; }