From 7bd2f524bc362b991b380e18b64006630a77f15b Mon Sep 17 00:00:00 2001 From: yamt Date: Mon, 15 Sep 2003 15:08:09 +0000 Subject: [PATCH] indent. --- sys/ufs/ufs/ufs_lookup.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/sys/ufs/ufs/ufs_lookup.c b/sys/ufs/ufs/ufs_lookup.c index 1088f193b913..b757aeb87dd5 100644 --- a/sys/ufs/ufs/ufs_lookup.c +++ b/sys/ufs/ufs/ufs_lookup.c @@ -1,4 +1,4 @@ -/* $NetBSD: ufs_lookup.c,v 1.51 2003/09/11 17:33:43 christos Exp $ */ +/* $NetBSD: ufs_lookup.c,v 1.52 2003/09/15 15:08:09 yamt Exp $ */ /* * Copyright (c) 1989, 1993 @@ -37,7 +37,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ufs_lookup.c,v 1.51 2003/09/11 17:33:43 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ufs_lookup.c,v 1.52 2003/09/15 15:08:09 yamt Exp $"); #include #include @@ -294,16 +294,16 @@ searchloop: */ if (ep->d_ino) { #if (BYTE_ORDER == LITTLE_ENDIAN) - if (vdp->v_mount->mnt_maxsymlinklen > 0 || - needswap != 0) - namlen = ep->d_namlen; - else - namlen = ep->d_type; + if (vdp->v_mount->mnt_maxsymlinklen > 0 || + needswap != 0) + namlen = ep->d_namlen; + else + namlen = ep->d_type; #else - if (vdp->v_mount->mnt_maxsymlinklen <= 0 - && needswap != 0) - namlen = ep->d_type; - else + if (vdp->v_mount->mnt_maxsymlinklen <= 0 + && needswap != 0) + namlen = ep->d_type; + else namlen = ep->d_namlen; #endif if (namlen == cnp->cn_namelen &&