diff options
author | Roland McGrath <roland@gnu.org> | 1999-10-13 19:37:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-10-13 19:37:29 +0000 |
commit | 822faaf3dcbee03f1aae496e6240769e5b6c0d27 (patch) | |
tree | b75e87e784d61e3cd9b4c67cf2daba34b5ab1d5e /ufs/consts.c | |
parent | 694a16a9db2eb446c00c1ebeb5c5cbe831f8e4ab (diff) |
1999-10-13 Roland McGrath <roland@baalperazim.frob.com>
* consts.c (diskfs_name_max): New variable.
Diffstat (limited to 'ufs/consts.c')
-rw-r--r-- | ufs/consts.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ufs/consts.c b/ufs/consts.c index 8806049e..69221233 100644 --- a/ufs/consts.c +++ b/ufs/consts.c @@ -1,5 +1,5 @@ /* Various constants wanted by the diskfs library - Copyright (C) 1994, 1995, 1996 Free Software Foundation + Copyright (C) 1994, 1995, 1996, 1999 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -16,9 +16,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "ufs.h" +#include "dir.h" #include <version.h> int diskfs_link_max = LINK_MAX; +int diskfs_name_max = MAXNAMLEN; int diskfs_maxsymlinks = 8; int diskfs_shortcut_symlink = 1; int diskfs_shortcut_chrdev = 1; |