Various changes getting ready for the release of 3.81.

- Updates to make.texi and make.1 and other documentation
- Some VMS patches
- Fix minor bugs reported on the mailing list and from Debian.
This commit is contained in:
Paul Smith
2006-01-04 14:45:16 +00:00
parent 3d0d9e5d75
commit 64e16d6c00
20 changed files with 392 additions and 152 deletions

View File

@@ -90,7 +90,10 @@ readdir (DIR *dir)
dentry->d_namlen = dnam->nam$b_name + dnam->nam$b_type;
strncpy (dentry->d_name, dnam->nam$l_name, dentry->d_namlen);
dentry->d_name[dentry->d_namlen] = '\0';
#ifdef HAVE_CASE_INSENSITIVE_FS
uppercasify (dentry->d_name);
#endif
return (dentry);
}