X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Ffsck.c;h=e452adc0028f1b35f26aff455e89eba4d6021b7b;hp=d7a42de8f42dc7fd0fff65351edeccfdc12258cf;hb=428a45c3e15f03e9861e1b551e1ae8da821dba5f;hpb=c69c3695303d5a660ad093a076c2e364ae6061de diff --git a/daemon/fsck.c b/daemon/fsck.c index d7a42de..e452adc 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 @@ -32,11 +32,9 @@ do_fsck (const char *fstype, const char *device) char *err; int r; - IS_DEVICE (device, -1); - r = commandr (NULL, &err, "fsck", "-a", "-t", fstype, device, NULL); if (r == -1) { - reply_with_error ("fsck: %s: %s", device, err); + reply_with_error ("%s: %s", device, err); free (err); return -1; }