X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=fish%2Falloc.c;h=08790a7ec4650d0fc4f9fdfd9ecf0572215a340e;hp=156fcc00a1df66bcfc23049a57254028f821bcc0;hb=HEAD;hpb=6391d1a7cfa10337a75465c72d49df3c9ebc65ca diff --git a/fish/alloc.c b/fish/alloc.c index 156fcc0..08790a7 100644 --- a/fish/alloc.c +++ b/fish/alloc.c @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -133,7 +133,9 @@ alloc_disk (const char *filename, const char *size_str, int add, int sparse) } if (add) { - if (guestfs_add_drive (g, filename) == -1) { + if (guestfs_add_drive_opts (g, filename, + GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw", + -1) == -1) { unlink (filename); return -1; }