Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ufs/ufs #undef DIRBLKSIZ before #define-ing it



details:   https://anonhg.NetBSD.org/src/rev/e59e13b35228
branches:  trunk
changeset: 521817:e59e13b35228
user:      lukem <lukem%NetBSD.org@localhost>
date:      Wed Feb 06 15:44:49 2002 +0000

description:
#undef DIRBLKSIZ before #define-ing it

diffstat:

 sys/ufs/ufs/dir.h |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 638fa89ef765 -r e59e13b35228 sys/ufs/ufs/dir.h
--- a/sys/ufs/ufs/dir.h Wed Feb 06 15:39:01 2002 +0000
+++ b/sys/ufs/ufs/dir.h Wed Feb 06 15:44:49 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dir.h,v 1.12 2002/01/31 19:16:34 tv Exp $      */
+/*     $NetBSD: dir.h,v 1.13 2002/02/06 15:44:49 lukem Exp $   */
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -76,8 +76,9 @@
  * Entries other than the first in a directory do not normally have
  * dp->d_ino set to 0.
  */
-#define DIRBLKSIZ      DEV_BSIZE
-#undef MAXNAMLEN
+#undef DIRBLKSIZ
+#define        DIRBLKSIZ       DEV_BSIZE
+#undef MAXNAMLEN
 #define        MAXNAMLEN       255
 
 struct direct {



Home | Main Index | Thread Index | Old Index