X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fwc.c;h=fe27bf19ea60522e3b101d9ada7b170216e3e05b;hp=0917eb9b92af86c2a02297cfb54a5d7878e1327e;hb=07369cb77a07f965cbf8e02f485c78a22c091f85;hpb=0dd6c8c8442d4ff588f6dac2efab24d3409b0dec diff --git a/daemon/wc.c b/daemon/wc.c index 0917eb9..fe27bf1 100644 --- a/daemon/wc.c +++ b/daemon/wc.c @@ -28,15 +28,12 @@ #include "actions.h" static int -wc (char *flag, char *path) +wc (const char *flag, const char *path) { char *buf; char *out, *err; int r; - NEED_ROOT (-1); - ABS_PATH (path, return -1); - /* Make the path relative to /sysroot. */ buf = sysroot_path (path); if (!buf) { @@ -63,7 +60,7 @@ wc (char *flag, char *path) /* Parse the number. */ if (sscanf (out, "%d", &r) != 1) { - reply_with_error ("wc: cannot parse number: %s", out); + reply_with_error ("cannot parse number: %s", out); free (out); return -1; } @@ -73,19 +70,19 @@ wc (char *flag, char *path) } int -do_wc_l (char *path) +do_wc_l (const char *path) { return wc ("-l", path); } int -do_wc_w (char *path) +do_wc_w (const char *path) { return wc ("-w", path); } int -do_wc_c (char *path) +do_wc_c (const char *path) { return wc ("-c", path); }