- (dtucker) [openbsd-compat/regress/closefromtest.c] Bug #1358: Always

return 0 on successful test.  From David.Leonard at quest com.
This commit is contained in:
Darren Tucker 2007-09-10 13:20:14 +10:00
parent ac4ee1eb0f
commit e296d58dcf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
20070910
- (dtucker) [openbsd-compat/regress/closefromtest.c] Bug #1358: Always
return 0 on successful test. From David.Leonard at quest com.
20070817
- (dtucker) [sshd.8] Many Linux variants use a single "!" to denote locked
accounts and that's what the code looks for, so make man page and code
@ -3184,4 +3188,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.4739 2007/09/04 06:49:39 djm Exp $
$Id: ChangeLog,v 1.4740 2007/09/10 03:20:14 dtucker Exp $

View File

@ -57,4 +57,5 @@ main(void)
for (i = 0; i < NUM_OPENS; i++)
if (close(fds[i]) != -1)
fail("failed to close from lowest fd");
return 0;
}