diff options
author | Roy Marples <roy@marples.name> | 2008-01-28 13:16:33 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-28 13:16:33 +0000 |
commit | 9ce3086bf5658caf4f1d97ed489e2f96ff7b6282 (patch) | |
tree | a2737b0b1d1a1665fed6bd409b74ebe88995a63b /src/librc/librc-daemon.c | |
parent | ae6929fa3080bf3f784cf8683d5b5f19cad79d40 (diff) |
Fix service_started_daemon, bug #11
Diffstat (limited to 'src/librc/librc-daemon.c')
-rw-r--r-- | src/librc/librc-daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librc/librc-daemon.c b/src/librc/librc-daemon.c index a972bd7a..d697a681 100644 --- a/src/librc/librc-daemon.c +++ b/src/librc/librc-daemon.c @@ -431,7 +431,7 @@ bool rc_service_started_daemon (const char *service, const char *exec, } else { if ((dp = opendir (dirpath))) { while ((d = readdir (dp))) { - if (d->d_name[0] == ',') + if (d->d_name[0] == '.') continue; retval = _match_daemon (dirpath, d->d_name, mexec, NULL, NULL); if (retval) |