diff options
author | Warner Losh <imp@FreeBSD.org> | 2018-01-05 05:34:20 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2018-01-05 05:34:20 +0000 |
commit | 53584cf69cafbb96a15c374aba625786ea1f3ddb (patch) | |
tree | 9bd53f9babd2f1a2a6aa6ef8303c5e795955d7f1 | |
parent | 783d8ed04e52b23cf5c76d2ef52b294aa720a613 (diff) | |
download | src-53584cf69cafbb96a15c374aba625786ea1f3ddb.tar.gz src-53584cf69cafbb96a15c374aba625786ea1f3ddb.zip |
Don't close fd twice. This line should have been deleted in r327279.
CID: 1384015
Notes
Notes:
svn path=/head/; revision=327571
-rw-r--r-- | usr.sbin/fwcontrol/fwdv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.sbin/fwcontrol/fwdv.c b/usr.sbin/fwcontrol/fwdv.c index 0dbf17d04a42..2baf1c43c803 100644 --- a/usr.sbin/fwcontrol/fwdv.c +++ b/usr.sbin/fwcontrol/fwdv.c @@ -409,7 +409,6 @@ again: err(1, "write failed"); } } - close(fd); fprintf(stderr, "\n"); send_end: gettimeofday(&end, NULL); |