Isolate old constant NCP_VOLNAME_LEN.

This commit is contained in:
Boris Popov 1999-10-14 08:57:54 +00:00
parent f24bb3a4b3
commit 51533e5859
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52229
2 changed files with 6 additions and 2 deletions

View File

@ -52,13 +52,15 @@
#define NWFS_MOUNT_GET_SYSENT 0x0040 /* special case, look to vfsops :) */
#define NWFS_MOUNT_HAVE_NLS 0x0080
#define NWFS_VOLNAME_LEN 48
/* Layout of the mount control block for a netware file system. */
struct nwfs_args {
int connRef; /* connection reference */
char mount_point[MAXPATHLEN];
u_int flags;
u_char mounted_vol[NCP_VOLNAME_LEN + 1];
u_char mounted_vol[NWFS_VOLNAME_LEN + 1];
u_char root_path[512+1];
int version;
uid_t uid;

View File

@ -52,13 +52,15 @@
#define NWFS_MOUNT_GET_SYSENT 0x0040 /* special case, look to vfsops :) */
#define NWFS_MOUNT_HAVE_NLS 0x0080
#define NWFS_VOLNAME_LEN 48
/* Layout of the mount control block for a netware file system. */
struct nwfs_args {
int connRef; /* connection reference */
char mount_point[MAXPATHLEN];
u_int flags;
u_char mounted_vol[NCP_VOLNAME_LEN + 1];
u_char mounted_vol[NWFS_VOLNAME_LEN + 1];
u_char root_path[512+1];
int version;
uid_t uid;