X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Ffsck.c;h=f1a9dc57c6e6de9fe3ee49c2aec0c84f32b1c079;hp=d7a42de8f42dc7fd0fff65351edeccfdc12258cf;hb=8ab8377ef64ec0e2483826388cf7d3c07ffa8ecc;hpb=c69c3695303d5a660ad093a076c2e364ae6061de diff --git a/daemon/fsck.c b/daemon/fsck.c index d7a42de..f1a9dc5 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,14 @@ #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);