Close a file descriptor leak. Possibly closes PR #1212

This commit is contained in:
Gary Palmer 1996-06-03 21:35:21 +00:00
parent 70013b5739
commit 4ecb9b64f0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16101

View File

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: os.c,v 1.5 1996/05/11 20:48:37 phk Exp $
* $Id: os.c,v 1.6 1996/05/13 07:20:11 phk Exp $
*
*/
#include "fsm.h"
@ -92,8 +92,10 @@ int updown;
/*
* If given addresses are alreay set, then ignore this request.
*/
if (oldmine.s_addr == myaddr.s_addr && oldhis.s_addr == hisaddr.s_addr)
if (oldmine.s_addr == myaddr.s_addr && oldhis.s_addr == hisaddr.s_addr) {
close(s);
return(0);
}
/*
* If different address has been set, then delete it first.
*/