aboutsummaryrefslogtreecommitdiff
path: root/networking/route.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-08-22 15:57:50 +0000
committerRob Landley <rob@landley.net>2005-08-22 15:57:50 +0000
commit6417564eebe6b9591d9c001160d201194bd5e24a (patch)
treeb4cdfd16b6aea4804eccb72ea9f04c130074863a /networking/route.c
parentd00b3a5e944e7499bd061c0b8f9d9f0847528fce (diff)
downloadbusybox-6417564eebe6b9591d9c001160d201194bd5e24a.tar.gz
Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles.
Diffstat (limited to 'networking/route.c')
-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)
bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
}
- /* Don't bother closing, as we're exiting after we return anyway. */
- /* close(skfd); */
+ if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
}
#ifdef CONFIG_FEATURE_IPV6
@@ -440,8 +439,7 @@ static void INET6_setroute(int action, char **args)
bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
}
- /* Don't bother closing, as we're exiting after we return anyway. */
- /* close(skfd); */
+ if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
}
#endif