diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2004-03-16 08:37:19 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2004-03-16 08:37:19 +0000 |
| commit | 2ba9b76668158e6bc98337161051bda5fa92aa78 (patch) | |
| tree | 77c8ddda1ca0d6efe62d77999c5eb701ff69bc5a /sys/compat | |
| parent | 3ed29c96cfb932fe7f22ab2e3604f95d6cdd01d5 (diff) | |
Notes
Diffstat (limited to 'sys/compat')
| -rw-r--r-- | sys/compat/linux/linux_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c index 64fdb0147f2e1..857c73d62bc86 100644 --- a/sys/compat/linux/linux_file.c +++ b/sys/compat/linux/linux_file.c @@ -741,10 +741,10 @@ linux_mount(struct thread *td, struct linux_mount_args *args) NULL); if (error) return (error); - error = copyinstr(args->specialfile, mntfromname, MFSNAMELEN - 1, NULL); + error = copyinstr(args->specialfile, mntfromname, MNAMELEN - 1, NULL); if (error) return (error); - error = copyinstr(args->dir, mntonname, MFSNAMELEN - 1, NULL); + error = copyinstr(args->dir, mntonname, MNAMELEN - 1, NULL); if (error) return (error); |
