Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/ufs/ufs indent.
details: https://anonhg.NetBSD.org/src/rev/35e71789ff90
branches: trunk
changeset: 551998:35e71789ff90
user: yamt <yamt%NetBSD.org@localhost>
date: Mon Sep 15 15:08:09 2003 +0000
description:
indent.
diffstat:
sys/ufs/ufs/ufs_lookup.c | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diffs (44 lines):
diff -r 86ecd5cc4fff -r 35e71789ff90 sys/ufs/ufs/ufs_lookup.c
--- a/sys/ufs/ufs/ufs_lookup.c Mon Sep 15 13:19:10 2003 +0000
+++ b/sys/ufs/ufs/ufs_lookup.c Mon Sep 15 15:08:09 2003 +0000
@@ -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 <sys/cdefs.h>
-__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 <sys/param.h>
#include <sys/systm.h>
@@ -294,16 +294,16 @@
*/
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 &&
Home |
Main Index |
Thread Index |
Old Index