* dir.cc (readdir): Reinstate setting of old ino field for legacy applications.
* dirent.h (dirent): Rename unused field to __ino32. * passwd.cc (getpwnam_r): Initialize pw_comment field.
This commit is contained in:
parent
7d0e78a71b
commit
51d340e1c8
|
@ -1,6 +1,12 @@
|
|||
2003-09-08 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* passwe.cc (getpwnam_r): Initialize pw_comment field.
|
||||
* dir.cc (readdir): Reinstate setting of old ino field for legacy
|
||||
applications.
|
||||
* dirent.h (dirent): Rename unused field to __ino32.
|
||||
|
||||
2003-09-08 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* passwd.cc (getpwnam_r): Initialize pw_comment field.
|
||||
|
||||
2003-09-08 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
|
|
|
@ -174,6 +174,7 @@ readdir (DIR *dir)
|
|||
__ino64_t dino = hash_path_name (dir->__d_dirhash, "\\");
|
||||
dir->__d_dirent->d_ino = hash_path_name (dino, res->d_name);
|
||||
}
|
||||
res->__ino32 = dir->__d_dirent->d_ino; // for legacy applications
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ struct dirent
|
|||
__ino64_t d_ino; /* still junk but with more bits */
|
||||
long d_fd; /* File descriptor of open directory.
|
||||
Used since Cygwin 1.3.3. */
|
||||
unsigned __flags; /* Used internally. */
|
||||
unsigned __ino32;
|
||||
char d_name[256]; /* FIXME: use NAME_MAX? */
|
||||
};
|
||||
#else
|
||||
|
@ -33,7 +33,7 @@ struct dirent
|
|||
long d_version;
|
||||
ino_t d_ino;
|
||||
long d_fd;
|
||||
unsigned long __unused;
|
||||
unsigned long __ino32;
|
||||
char d_name[256];
|
||||
};
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue