From 0179239c998d7ec663333e36d6658cb4b72536e9 Mon Sep 17 00:00:00 2001 From: markd Date: Tue, 29 Jul 2003 12:11:29 +0000 Subject: [PATCH] xlatecookie option wasn't working as MNTTAB_OPT_XLATECOOKIE wasn't defined. patch will be in am-utils 6.1 OK'd by christos --- dist/am-utils/include/am_compat.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dist/am-utils/include/am_compat.h b/dist/am-utils/include/am_compat.h index 66d392d88f00..5da5301916ad 100644 --- a/dist/am-utils/include/am_compat.h +++ b/dist/am-utils/include/am_compat.h @@ -1,4 +1,4 @@ -/* $NetBSD: am_compat.h,v 1.1.1.5 2002/11/29 22:59:02 christos Exp $ */ +/* $NetBSD: am_compat.h,v 1.2 2003/07/29 12:11:29 markd Exp $ */ /* * am_compat.h: @@ -96,6 +96,10 @@ # define MNTTAB_OPT_NOLOCK "nolock" #endif /* defined(MNT2_NFS_OPT_NONLM) && !defined(MNTTAB_OPT_NOLOCK) */ +#if defined(MNT2_NFS_OPT_XLATECOOKIE) && !defined(MNTTAB_OPT_XLATECOOKIE) +# define MNTTAB_OPT_XLATECOOKIE "xlatecookie" +#endif /* defined(MNT2_NFS_OPT_XLATECOOKIE) && !defined(MNTTAB_OPT_XLATECOOKIE) */ + /* * Complete MNTTAB_OPT_* options based on MNT2_CDFS_OPT_* mount options. */