Correctd name length to account for new IMFS max name length of 32.

This commit is contained in:
Jennifer Averett
1999-03-29 18:06:00 +00:00
parent 1ed9d576d9
commit eaf0e8eb0a
2 changed files with 6 additions and 2 deletions

View File

@@ -27,6 +27,7 @@
#define MAXSYMLINK 5 /* There needs to be a better way of getting this. */
/*
* List of files which should exist.
*/
@@ -133,7 +134,7 @@ char *Good_absolute_paths[] = {
char *Bad_paths[] = {
"/links/ENAMETOOLONG___",
"/links/ENAMETOOLONG__________________________",
"/dir1/file4/NOTADIR",
"/dir1/dir1/EACCES__",
0
@@ -244,6 +245,7 @@ void chown_multiple_files(
st_gid = getegid();
#else
st_uid = 100;
e
st_gid = 0;
#endif

View File

@@ -27,6 +27,7 @@
#define MAXSYMLINK 5 /* There needs to be a better way of getting this. */
/*
* List of files which should exist.
*/
@@ -133,7 +134,7 @@ char *Good_absolute_paths[] = {
char *Bad_paths[] = {
"/links/ENAMETOOLONG___",
"/links/ENAMETOOLONG__________________________",
"/dir1/file4/NOTADIR",
"/dir1/dir1/EACCES__",
0
@@ -244,6 +245,7 @@ void chown_multiple_files(
st_gid = getegid();
#else
st_uid = 100;
e
st_gid = 0;
#endif