From 1d94a9ab552040a1601d4a083e98449c2d080682 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Fri, 2 Jul 2004 15:43:10 +0000 Subject: [PATCH] Remove invalid tokens after #endif --- sys/net/i4b/driver/i4b_ctl.c | 4 ++-- sys/vfs/gnu/ext2fs/ext2_vnops.c | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/sys/net/i4b/driver/i4b_ctl.c b/sys/net/i4b/driver/i4b_ctl.c index 84c83d05f7..32341e7776 100644 --- a/sys/net/i4b/driver/i4b_ctl.c +++ b/sys/net/i4b/driver/i4b_ctl.c @@ -30,7 +30,7 @@ * $Id: i4b_ctl.c,v 1.37 2000/05/31 08:04:43 hm Exp $ * * $FreeBSD: src/sys/i4b/driver/i4b_ctl.c,v 1.10.2.3 2001/08/12 16:22:48 hm Exp $ - * $DragonFly: src/sys/net/i4b/driver/i4b_ctl.c,v 1.9 2004/05/19 22:52:59 dillon Exp $ + * $DragonFly: src/sys/net/i4b/driver/i4b_ctl.c,v 1.10 2004/07/02 15:43:10 joerg Exp $ * * last edit-date: [Sat Aug 11 18:06:38 2001] * @@ -354,7 +354,7 @@ i4bctlioctl(dev_t dev, int cmd, caddr_t data, int flag, struct proc *p) break; } return(error); -#endif DO_I4B_DEBUG +#endif /* DO_I4B_DEBUG */ } #if (defined(__DragonFly__) || defined(__FreeBSD__)) && defined(OS_USES_POLL) diff --git a/sys/vfs/gnu/ext2fs/ext2_vnops.c b/sys/vfs/gnu/ext2fs/ext2_vnops.c index f686646e96..32cc60b5c4 100644 --- a/sys/vfs/gnu/ext2fs/ext2_vnops.c +++ b/sys/vfs/gnu/ext2fs/ext2_vnops.c @@ -44,7 +44,7 @@ * @(#)ufs_vnops.c 8.27 (Berkeley) 5/27/95 * @(#)ext2_vnops.c 8.7 (Berkeley) 2/3/94 * $FreeBSD: src/sys/gnu/ext2fs/ext2_vnops.c,v 1.51.2.2 2003/01/02 17:26:18 bde Exp $ - * $DragonFly: src/sys/vfs/gnu/ext2fs/ext2_vnops.c,v 1.12 2004/04/24 04:32:03 drhodus Exp $ + * $DragonFly: src/sys/vfs/gnu/ext2fs/ext2_vnops.c,v 1.13 2004/07/02 15:43:10 joerg Exp $ */ #include "opt_quota.h" @@ -772,7 +772,7 @@ ext2_mkdir(struct vop_mkdir_args *ap) #ifdef QUOTA struct ucred ucred, *ucp; ucp = cnp->cn_cred; -#endif I +#endif /* * if we are hacking owners here, (only do this where told to) * and we are not giving it TOO root, (would subvert quotas) @@ -800,7 +800,7 @@ ext2_mkdir(struct vop_mkdir_args *ap) ucred.cr_groups[0] = dp->i_gid; ucp = &ucred; } -#endif I +#endif } else { ip->i_uid = cnp->cn_cred->cr_uid; } @@ -1029,7 +1029,7 @@ ext2_makeinode(int mode, struct vnode *dvp, struct vnode **vpp, #ifdef QUOTA struct ucred ucred, *ucp; ucp = cnp->cn_cred; -#endif I +#endif /* * if we are * not the owner of the directory, @@ -1056,7 +1056,7 @@ ext2_makeinode(int mode, struct vnode *dvp, struct vnode **vpp, ucred.cr_ngroups = 1; ucred.cr_groups[0] = pdir->i_gid; ucp = &ucred; -#endif I +#endif } else { ip->i_uid = cnp->cn_cred->cr_uid; } -- 2.41.0