From: Richard W.M. Jones Date: Sat, 3 Dec 2011 23:16:00 +0000 (+0000) Subject: blkid: Fix mistake in previous commit. X-Git-Tag: 1.15.10~7 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=c48226a5026816b115ab63b50d3601531aff59dc;p=libguestfs.git blkid: Fix mistake in previous commit. This updates commit 6533491b178d18bfab8240cf093be4ef9b547548. --- diff --git a/daemon/blkid.c b/daemon/blkid.c index c610a41..79f4d83 100644 --- a/daemon/blkid.c +++ b/daemon/blkid.c @@ -98,7 +98,7 @@ do_blkid(const char *device) "blkid", /* Adding -c option kills all caching, even on RHEL 5. */ "-c", "/dev/null", - "-p", "-i", "-o", "export", device, NULL); + "-i", "-o", "export", device, NULL); if (r == -1) { reply_with_error("%s", err); goto error;