From: Oliver Kurth Date: Tue, 30 Jan 2018 00:52:19 +0000 (-0800) Subject: Restore "ufs" to the list of known filesystems X-Git-Tag: 10.2.5~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d3bdff6d2ba3dff26ab4b18dd9da9d1aa42f8fcd;p=thirdparty%2Fopen-vm-tools.git Restore "ufs" to the list of known filesystems "ufs" was mistakenly removed from the the list of known filesystems in vmware tools 10.2.0. Correct that mistake. --- diff --git a/open-vm-tools/lib/wiper/wiperPosix.c b/open-vm-tools/lib/wiper/wiperPosix.c index 7feaab24c..bd5424107 100644 --- a/open-vm-tools/lib/wiper/wiperPosix.c +++ b/open-vm-tools/lib/wiper/wiperPosix.c @@ -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 },