svn commit: r251412 - stable/8/lib/libc/gen

Steven Hartland smh at FreeBSD.org
Wed Jun 5 11:28:56 UTC 2013


Author: smh
Date: Wed Jun  5 11:28:55 2013
New Revision: 251412
URL: http://svnweb.freebsd.org/changeset/base/251412

Log:
  MFC r219696:
  Add ZFS to UFS-like file systems.

Modified:
  stable/8/lib/libc/gen/fts-compat.c
  stable/8/lib/libc/gen/fts.c
Directory Properties:
  stable/8/lib/libc/   (props changed)

Modified: stable/8/lib/libc/gen/fts-compat.c
==============================================================================
--- stable/8/lib/libc/gen/fts-compat.c	Wed Jun  5 11:23:10 2013	(r251411)
+++ stable/8/lib/libc/gen/fts-compat.c	Wed Jun  5 11:28:55 2013	(r251412)
@@ -110,6 +110,7 @@ struct _fts_private {
 
 static const char *ufslike_filesystems[] = {
 	"ufs",
+	"zfs",
 	"nfs",
 	"nfs4",
 	"ext2fs",

Modified: stable/8/lib/libc/gen/fts.c
==============================================================================
--- stable/8/lib/libc/gen/fts.c	Wed Jun  5 11:23:10 2013	(r251411)
+++ stable/8/lib/libc/gen/fts.c	Wed Jun  5 11:28:55 2013	(r251412)
@@ -100,6 +100,7 @@ struct _fts_private {
 
 static const char *ufslike_filesystems[] = {
 	"ufs",
+	"zfs",
 	"nfs",
 	"nfs4",
 	"ext2fs",


More information about the svn-src-all mailing list