Remove line which was accidentally kept in r238614.

Submitted by:	pjd
Pointy hat to:	kib
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2012-07-19 20:38:03 +00:00
parent 8df73d0824
commit eb3d975443
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=238627

View File

@ -906,7 +906,6 @@ do_dup(struct thread *td, int flags, int old, int new,
fdp->fd_ofileflags[new] = fdp->fd_ofileflags[old] | UF_EXCLOSE;
else
fdp->fd_ofileflags[new] = fdp->fd_ofileflags[old] & ~UF_EXCLOSE;
fdp->fd_ofileflags[new] = fdp->fd_ofileflags[old] &~ UF_EXCLOSE;
if (new > fdp->fd_lastfile)
fdp->fd_lastfile = new;
*retval = new;