X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=daemon%2Fclient.c;h=4a647e84f78cdb5eb14176e348df47c47464f83b;hb=5feb6be7188c594f4d2b9685db7f3fb0b584ea4a;hp=6f393272ed21555f51dc39c1a5a4f841866210b4;hpb=4f8fc795dd4bae877bfef8ac1e8df062c023fca2;p=doldaconnect.git diff --git a/daemon/client.c b/daemon/client.c index 6f39327..4a647e8 100644 --- a/daemon/client.c +++ b/daemon/client.c @@ -76,7 +76,11 @@ static struct scanstate *scanjob = NULL; static struct scanqueue *scanqueue = NULL; static struct sharepoint *shares = NULL; static struct hashcache *hashcache = NULL; -static pid_t hashjob = 0; +/* Set initially to -1, but changed to 0 the first time run() is + * called. This is to avoid forking a hash job before daemonizing, + * since that would make the daemon unable to wait() for the hash + * job. */ +static pid_t hashjob = -1; struct sharecache *shareroot = NULL; unsigned long long sharesize = 0; GCBCHAIN(sharechangecb, unsigned long long); @@ -198,6 +202,7 @@ wchar_t *unparsehash(struct hash *hash) addtobuf(buf, ':'); bufcat(buf, whbuf, wcslen(whbuf)); free(whbuf); + addtobuf(buf, 0); return(buf); } @@ -1050,6 +1055,11 @@ static int init(int hup) static int run(void) { + if(hashjob == -1) + { + hashjob = 0; + checkhashes(); + } return(doscan(10)); }