- (dtucker) [openbsd-compat/getcwd.c] Replace lstat with fstat to match up

with OpenBSD code since we don't support platforms without fstat any more.
This commit is contained in:
Darren Tucker 2005-11-10 17:15:06 +11:00
parent 31ba53e333
commit 0a149d19d3
2 changed files with 5 additions and 5 deletions

View File

@ -30,6 +30,8 @@
- (dtucker) [openbsd-compat/glob.c] Update from OpenBSD 1.22 -> 1.25.
- (dtucker) [openbsd-compat/glob.h] Update from OpenBSD 1.8 -> 1.9.
- (dtucker) [openbsd-compat/getcwd.c] Update from OpenBSD 1.9 -> 1.14.
- (dtucker) [openbsd-compat/getcwd.c] Replace lstat with fstat to match up
with OpenBSD code since we don't support platforms without fstat any more.
20051105
- (djm) OpenBSD CVS Sync
@ -3272,4 +3274,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3973 2005/11/10 06:11:29 dtucker Exp $
$Id: ChangeLog,v 1.3974 2005/11/10 06:15:06 dtucker Exp $

View File

@ -144,10 +144,8 @@ getcwd(char *pt, size_t size)
*bup++ = '.';
*bup = '\0';
/* Open and stat parent directory.
* RACE?? - replaced fstat(dirfd(dir), &s) w/ lstat(up,&s)
*/
if (!(dir = opendir(up)) || lstat(up,&s))
/* Open and stat parent directory. */
if (!(dir = opendir(up)) || fstat(dirfd(dir), &s))
goto err;
/* Add trailing slash for next directory. */