aboutsummaryrefslogtreecommitdiff
path: root/networking/inetd.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/inetd.c')
-rw-r--r--networking/inetd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/inetd.c b/networking/inetd.c
index 8f871ee12..da6551174 100644
--- a/networking/inetd.c
+++ b/networking/inetd.c
@@ -1207,7 +1207,7 @@ static void clean_up_and_exit(int sig UNUSED_PARAM)
1207 if (ENABLE_FEATURE_CLEAN_UP) 1207 if (ENABLE_FEATURE_CLEAN_UP)
1208 close(sep->se_fd); 1208 close(sep->se_fd);
1209 } 1209 }
1210 remove_pidfile(CONFIG_PID_FILE_PATH "/inetd.pid"); 1210 remove_pidfile_std_path_and_ext("inetd");
1211 exit(EXIT_SUCCESS); 1211 exit(EXIT_SUCCESS);
1212} 1212}
1213 1213
@@ -1256,7 +1256,7 @@ int inetd_main(int argc UNUSED_PARAM, char **argv)
1256 setgroups(1, &gid); 1256 setgroups(1, &gid);
1257 } 1257 }
1258 1258
1259 write_pidfile(CONFIG_PID_FILE_PATH "/inetd.pid"); 1259 write_pidfile_std_path_and_ext("inetd");
1260 1260
1261 /* never fails under Linux (except if you pass it bad arguments) */ 1261 /* never fails under Linux (except if you pass it bad arguments) */
1262 getrlimit(RLIMIT_NOFILE, &rlim_ofile); 1262 getrlimit(RLIMIT_NOFILE, &rlim_ofile);