]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Restore "ufs" to the list of known filesystems
authorOliver Kurth <okurth@vmware.com>
Tue, 30 Jan 2018 00:52:19 +0000 (16:52 -0800)
committerOliver Kurth <okurth@vmware.com>
Tue, 30 Jan 2018 00:52:19 +0000 (16:52 -0800)
"ufs" was mistakenly removed from the the list of known filesystems in
vmware tools 10.2.0.   Correct that mistake.

open-vm-tools/lib/wiper/wiperPosix.c

index 7feaab24c0267ffb16c79e7c0388fba121ac0d86..bd5424107a97ff47a91902f95e26ccd5a06a9230 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 2004-2017 VMware, Inc. All rights reserved.
+ * Copyright (C) 2004-2018 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -143,6 +143,7 @@ static const PartitionInfo gKnownPartitions[] = {
    { "ntfs",      PARTITION_NTFS,         NULL,                   TRUE        },
    { "pcfs",      PARTITION_PCFS,         NULL,                   TRUE        },
    { "reiserfs",  PARTITION_REISERFS,     NULL,                   TRUE        },
+   { "ufs",       PARTITION_UFS,          NULL,                   TRUE        },
    { "vfat",      PARTITION_FAT,          NULL,                   TRUE        },
    { "zfs",       PARTITION_ZFS,          NULL,                   FALSE       },
    { "xfs",       PARTITION_XFS,          NULL,                   TRUE        },