X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Ffsck.c;h=825f97e053ce8257e84088b5dd445b173e6758ed;hp=d7a42de8f42dc7fd0fff65351edeccfdc12258cf;hb=0c07f0d23698798475e0d09491812aca52440328;hpb=c69c3695303d5a660ad093a076c2e364ae6061de diff --git a/daemon/fsck.c b/daemon/fsck.c index d7a42de..825f97e 100644 --- a/daemon/fsck.c +++ b/daemon/fsck.c @@ -1,5 +1,5 @@ /* libguestfs - the guestfsd daemon - * Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -27,14 +27,12 @@ #include "actions.h" int -do_fsck (const char *fstype, const char *device) +do_fsck (char *fstype, char *device) { char *err; int r; - IS_DEVICE (device, -1); - - r = commandr (NULL, &err, "fsck", "-a", "-t", fstype, device, NULL); + r = commandr (NULL, &err, "/sbin/fsck", "-a", "-t", fstype, device, NULL); if (r == -1) { reply_with_error ("fsck: %s: %s", device, err); free (err);