This should be LFS_MAXNAMLEN

This commit is contained in:
christos 2005-08-23 11:44:25 +00:00
parent 0989a73965
commit 8a2ba8f0f7
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: utilities.c,v 1.20 2005/08/23 11:26:59 tron Exp $ */
/* $NetBSD: utilities.c,v 1.21 2005/08/23 11:44:25 christos Exp $ */
/*
* Copyright (c) 1980, 1986, 1993
@ -226,7 +226,7 @@ namelookup:
cp -= len;
memcpy(cp, namebuf, (size_t) len);
*--cp = '/';
if (cp < &namebuf[FFS_MAXNAMLEN])
if (cp < &namebuf[LFS_MAXNAMLEN])
break;
ino = idesc.id_number;
}