X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fext2.c;h=d2304bd07406dcb775e63aa1d2a836789b030bf8;hb=1997858e90da728287ef26a6d01a5766ac914312;hp=4e1b398bfd4d23f58e86033e38f3da86ce6fe5e0;hpb=2df2f2854ed2d1f9857ef3c5aaca29810cf3c506;p=libguestfs.git diff --git a/daemon/ext2.c b/daemon/ext2.c index 4e1b398..d2304bd 100644 --- a/daemon/ext2.c +++ b/daemon/ext2.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 @@ -28,7 +28,7 @@ #include "actions.h" char ** -do_tune2fs_l (const char *device) +do_tune2fs_l (char *device) { int r; char *out, *err; @@ -36,7 +36,7 @@ do_tune2fs_l (const char *device) char **ret = NULL; int size = 0, alloc = 0; - IS_DEVICE (device, NULL); + RESOLVE_DEVICE (device, return NULL); r = command (&out, &err, "/sbin/tune2fs", "-l", device, NULL); if (r == -1) { @@ -77,31 +77,31 @@ do_tune2fs_l (const char *device) do { colon++; } while (*colon && isspace (*colon)); if (add_string (&ret, &size, &alloc, p) == -1) { - free (out); - return NULL; + free (out); + return NULL; } if (strcmp (colon, "") == 0 || - strcmp (colon, "") == 0 || - strcmp (colon, "(none)") == 0) { - if (add_string (&ret, &size, &alloc, "") == -1) { - free (out); - return NULL; - } + strcmp (colon, "") == 0 || + strcmp (colon, "(none)") == 0) { + if (add_string (&ret, &size, &alloc, "") == -1) { + free (out); + return NULL; + } } else { - if (add_string (&ret, &size, &alloc, colon) == -1) { - free (out); - return NULL; - } + if (add_string (&ret, &size, &alloc, colon) == -1) { + free (out); + return NULL; + } } } else { if (add_string (&ret, &size, &alloc, p) == -1) { - free (out); - return NULL; + free (out); + return NULL; } if (add_string (&ret, &size, &alloc, "") == -1) { - free (out); - return NULL; + free (out); + return NULL; } } @@ -117,12 +117,12 @@ do_tune2fs_l (const char *device) } int -do_set_e2label (const char *device, const char *label) +do_set_e2label (char *device, char *label) { int r; char *err; - IS_DEVICE (device, -1); + RESOLVE_DEVICE (device, return -1); r = command (NULL, &err, "/sbin/e2label", device, label, NULL); if (r == -1) { @@ -136,12 +136,12 @@ do_set_e2label (const char *device, const char *label) } char * -do_get_e2label (const char *device) +do_get_e2label (char *device) { int r, len; char *out, *err; - IS_DEVICE (device, NULL); + RESOLVE_DEVICE (device, return NULL); r = command (&out, &err, "/sbin/e2label", device, NULL); if (r == -1) { @@ -162,12 +162,12 @@ do_get_e2label (const char *device) } int -do_set_e2uuid (const char *device, const char *uuid) +do_set_e2uuid (char *device, char *uuid) { int r; char *err; - IS_DEVICE (device, -1); + RESOLVE_DEVICE (device, return -1); r = command (NULL, &err, "/sbin/tune2fs", "-U", uuid, device, NULL); if (r == -1) { @@ -181,12 +181,12 @@ do_set_e2uuid (const char *device, const char *uuid) } char * -do_get_e2uuid (const char *device) +do_get_e2uuid (char *device) { int r; char *out, *err, *p, *q; - IS_DEVICE (device, NULL); + RESOLVE_DEVICE (device, return NULL); /* It's not so straightforward to get the volume UUID. We have * to use tune2fs -l and then look for a particular string in @@ -244,12 +244,12 @@ do_get_e2uuid (const char *device) } int -do_resize2fs (const char *device) +do_resize2fs (char *device) { char *err; int r; - IS_DEVICE (device, -1); + RESOLVE_DEVICE (device, return -1); r = command (NULL, &err, "/sbin/resize2fs", device, NULL); if (r == -1) { @@ -263,12 +263,12 @@ do_resize2fs (const char *device) } int -do_e2fsck_f (const char *device) +do_e2fsck_f (char *device) { char *err; int r; - IS_DEVICE (device, -1); + RESOLVE_DEVICE (device, return -1); r = command (NULL, &err, "/sbin/e2fsck", "-p", "-f", device, NULL); if (r == -1) {