diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-03-07 18:09:59 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-03-07 18:36:47 +0000 |
commit | a9510b7b22663ac27c8d59cee1bbd777468e1cac (patch) | |
tree | 9c86b59d7b71b8bd0c3812e854983c8e5459a28a /src/inspect_fs_unix.c | |
parent | 518cdb596e3d1e75e30d8df8fff5835aa2842479 (diff) | |
download | libguestfs-a9510b7b22663ac27c8d59cee1bbd777468e1cac.tar.gz libguestfs-a9510b7b22663ac27c8d59cee1bbd777468e1cac.tar.xz libguestfs-a9510b7b22663ac27c8d59cee1bbd777468e1cac.zip |
inspection: Add detection of FreeDOS (RHBZ#786215).
FreeDOS is returned as type="dos", distro="freedos". No version or
application information is returned at present.
Diffstat (limited to 'src/inspect_fs_unix.c')
-rw-r--r-- | src/inspect_fs_unix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inspect_fs_unix.c b/src/inspect_fs_unix.c index 252cce3c..5e58eb9c 100644 --- a/src/inspect_fs_unix.c +++ b/src/inspect_fs_unix.c @@ -686,6 +686,7 @@ check_hostname_unix (guestfs_h *g, struct inspect_fs *fs) break; case OS_TYPE_WINDOWS: /* not here, see check_windows_system_registry */ + case OS_TYPE_DOS: case OS_TYPE_UNKNOWN: default: /* nothing, keep GCC warnings happy */; |