Fix service_started_daemon, bug #11

This commit is contained in:
Roy Marples 2008-01-28 13:16:33 +00:00
parent ae6929fa30
commit 9ce3086bf5
2 changed files with 6 additions and 3 deletions

View File

@ -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)

View File

@ -229,11 +229,14 @@ static int do_service (int argc, char **argv)
service = getenv ("SVCNAME");
if (argc > 3) {
service = argv[0];
service = argv[1];
d = argv[2];
sscanf (argv[3], "%d", &idx);
} else if (argc == 3) {
sscanf (argv[2], "%d", &idx);
if (sscanf (argv[2], "%d", &idx) != 1) {
service = argv[1];
d = argv[2];
}
}
exit (rc_service_started_daemon (service, d, idx) ? 0 : 1);
} else