From: Richard W.M. Jones Date: Tue, 26 Oct 2010 08:56:55 +0000 (+0100) Subject: inspection: Ignore floppy disks and CD-ROM drives (RHBZ#642929). X-Git-Tag: 1.5.24~8 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=99dc2a9702e6c8a2bf9073af4cbf1803417ec3ee inspection: Ignore floppy disks and CD-ROM drives (RHBZ#642929). --- diff --git a/src/inspect.c b/src/inspect.c index 3ffb2bd..992573a 100644 --- a/src/inspect.c +++ b/src/inspect.c @@ -31,6 +31,7 @@ #include #include +#include "c-ctype.h" #include "ignore-value.h" #include "xstrtol.h" @@ -831,6 +832,12 @@ add_fstab_entry (guestfs_h *g, struct inspect_fs *fs, STREQ (mp, "/sys")) return 0; + /* Ignore /dev/fd (floppy disks) (RHBZ#642929) and CD-ROM drives. */ + if ((STRPREFIX (spec, "/dev/fd") && c_isdigit (spec[7])) || + STREQ (spec, "/dev/floppy") || + STREQ (spec, "/dev/cdrom")) + return 0; + /* Resolve UUID= and LABEL= to the actual device. */ char *device = NULL; if (STRPREFIX (spec, "UUID="))