Don't compile in sanity checks for old file systems if
LIBSA_NO_COMPAT_UFS is defined.
This commit is contained in:
parent
8f8c1f41d9
commit
6db650781c
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ufs.c,v 1.24 1999/03/31 07:43:39 simonb Exp $ */
|
||||
/* $NetBSD: ufs.c,v 1.25 1999/04/01 05:27:54 simonb Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1993
|
||||
|
@ -89,6 +89,9 @@ max(a, b)
|
|||
#if defined(LIBSA_FS_SINGLECOMPONENT) && !defined(LIBSA_NO_FS_SYMLINK)
|
||||
#define LIBSA_NO_FS_SYMLINK
|
||||
#endif
|
||||
#if defined(COMPAT_UFS) && defined(LIBSA_NO_COMPAT_UFS)
|
||||
#undef COMPAT_UFS
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue