aboutsummaryrefslogtreecommitdiff
path: root/runit/runsvdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'runit/runsvdir.c')
-rw-r--r--runit/runsvdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c
index 2b7927542..84916e929 100644
--- a/runit/runsvdir.c
+++ b/runit/runsvdir.c
@@ -181,9 +181,9 @@ static NOINLINE int do_rescan(void)
181 continue; 181 continue;
182 /* Do we have this service listed already? */ 182 /* Do we have this service listed already? */
183 for (i = 0; i < svnum; i++) { 183 for (i = 0; i < svnum; i++) {
184 if ((sv[i].ino == s.st_ino) 184 if (sv[i].ino == s.st_ino
185#if CHECK_DEVNO_TOO 185#if CHECK_DEVNO_TOO
186 && (sv[i].dev == s.st_dev) 186 && sv[i].dev == s.st_dev
187#endif 187#endif
188 ) { 188 ) {
189 if (sv[i].pid == 0) /* restart if it has died */ 189 if (sv[i].pid == 0) /* restart if it has died */