summaryrefslogtreecommitdiffstats
path: root/sbin/fsdb
diff options
context:
space:
mode:
authorpedro <pedro@openbsd.org>2005-12-19 15:18:01 +0000
committerpedro <pedro@openbsd.org>2005-12-19 15:18:01 +0000
commit60221941d0da10d16fa78f32ef21a03cae602181 (patch)
treeffea3e9ec45246ca7a5706f4915fb799cb8145dc /sbin/fsdb
parentr.i.p. libresolv (diff)
downloadwireguard-openbsd-60221941d0da10d16fa78f32ef21a03cae602181.tar.xz
wireguard-openbsd-60221941d0da10d16fa78f32ef21a03cae602181.zip
Add and use a few more constants and macros needed by UFS2
No functional change
Diffstat (limited to 'sbin/fsdb')
-rw-r--r--sbin/fsdb/fsdbutil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsdb/fsdbutil.c b/sbin/fsdb/fsdbutil.c
index f00bf4d6409..7db4aae82f1 100644
--- a/sbin/fsdb/fsdbutil.c
+++ b/sbin/fsdb/fsdbutil.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fsdbutil.c,v 1.10 2003/08/25 23:28:15 tedu Exp $ */
+/* $OpenBSD: fsdbutil.c,v 1.11 2005/12/19 15:18:01 pedro Exp $ */
/* $NetBSD: fsdbutil.c,v 1.5 1996/09/28 19:30:37 christos Exp $ */
/*-
@@ -38,7 +38,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: fsdbutil.c,v 1.10 2003/08/25 23:28:15 tedu Exp $";
+static char rcsid[] = "$OpenBSD: fsdbutil.c,v 1.11 2005/12/19 15:18:01 pedro Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -119,7 +119,7 @@ printstat(const char *cp, ino_t inum, struct ufs1_dinode *dp)
break;
case IFLNK:
fputs("symlink",stdout);
- if (dp->di_size > 0 && dp->di_size < MAXSYMLINKLEN &&
+ if (dp->di_size > 0 && dp->di_size < MAXSYMLINKLEN_UFS1 &&
dp->di_blocks == 0)
printf(" to `%.*s'\n", (int) dp->di_size,
(char *)dp->di_shortlink);