X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=daemon%2Fmain.c;h=025c5a291ff8d2e66c12c1c5c5736a21ad680bcf;hb=efea2eaf5cb56bc2ecabb58880620134eef80b8d;hp=1670c5ec5f42a0880fd555475bc3c78295aa96b8;hpb=58b3dc7b29cf506f70033233321186c472370e9d;p=doldaconnect.git diff --git a/daemon/main.c b/daemon/main.c index 1670c5e..025c5a2 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -371,13 +371,13 @@ int main(int argc, char **argv) char *configfile; char *pidfile; FILE *pfstream, *confstream; - int delay; + int delay, immsyslog; struct module *mod; - struct timer *timer, *ntimer; + struct timer *timer; struct child *child; double now; - nofork = 0; + immsyslog = nofork = 0; syslogfac = LOG_DAEMON; configfile = NULL; pidfile = NULL; @@ -425,8 +425,7 @@ int main(int argc, char **argv) nofork = 1; break; case 's': - logtosyslog = 1; - logtostderr = 0; + immsyslog = 1; break; case 'h': case ':': @@ -438,6 +437,11 @@ int main(int argc, char **argv) } setlocale(LC_ALL, ""); initlog(); + if(immsyslog) + { + logtosyslog = 1; + logtostderr = 0; + } signal(SIGPIPE, SIG_IGN); signal(SIGHUP, handler); signal(SIGINT, handler); @@ -523,20 +527,23 @@ int main(int argc, char **argv) } pollsocks(delay); now = ntime(); - for(timer = timers; timer != NULL; timer = ntimer) + do { - ntimer = timer->next; - if(now < timer->at) - continue; - if(timer->prev != NULL) - timer->prev->next = timer->next; - if(timer->next != NULL) - timer->next->prev = timer->prev; - if(timer == timers) - timers = timer->next; - timer->func(0, timer->data); - free(timer); - } + for(timer = timers; timer != NULL; timer = timer->next) + { + if(now < timer->at) + continue; + if(timer->prev != NULL) + timer->prev->next = timer->next; + if(timer->next != NULL) + timer->next->prev = timer->prev; + if(timer == timers) + timers = timer->next; + timer->func(0, timer->data); + free(timer); + break; + } + } while(timer != NULL); do { for(child = children; child != NULL; child = child->next) @@ -558,5 +565,7 @@ int main(int argc, char **argv) } flog(LOG_INFO, "terminating..."); terminate(); + if(pidfile != NULL) + unlink(pidfile); return(0); }