aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-08-22 15:57:50 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-08-22 15:57:50 +0000
commit82c045893751fd63299f97ca7dd61248d5668f10 (patch)
treeb4cdfd16b6aea4804eccb72ea9f04c130074863a /networking
parent43b6f06165941bdbdce8e200a63ac6341c09ec23 (diff)
downloadbusybox-w32-82c045893751fd63299f97ca7dd61248d5668f10.tar.gz
busybox-w32-82c045893751fd63299f97ca7dd61248d5668f10.tar.bz2
busybox-w32-82c045893751fd63299f97ca7dd61248d5668f10.zip
Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles.
git-svn-id: svn://busybox.net/trunk/busybox@11224 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking')
-rw-r--r--networking/route.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/networking/route.c b/networking/route.c
index 9e14944c9..7d4cb0b76 100644
--- a/networking/route.c
+++ b/networking/route.c
@@ -329,8 +329,7 @@ static void INET_setroute(int action, char **args)
329 bb_perror_msg_and_die("SIOC[ADD|DEL]RT"); 329 bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
330 } 330 }
331 331
332 /* Don't bother closing, as we're exiting after we return anyway. */ 332 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
333 /* close(skfd); */
334} 333}
335 334
336#ifdef CONFIG_FEATURE_IPV6 335#ifdef CONFIG_FEATURE_IPV6
@@ -440,8 +439,7 @@ static void INET6_setroute(int action, char **args)
440 bb_perror_msg_and_die("SIOC[ADD|DEL]RT"); 439 bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
441 } 440 }
442 441
443 /* Don't bother closing, as we're exiting after we return anyway. */ 442 if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
444 /* close(skfd); */
445} 443}
446#endif 444#endif
447 445