X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fdaemon.c;h=a4d0fd407c1865bb5b9bd0fcdf0100fa1854d915;hp=f0ccd3eebac8206e522e3a44af2accf6005c67e2;hb=3e6398d15008d68aa36b0b985a18f142fcfa9a8f;hpb=b3b89ab95e626286ad2fe9ccf5b589f153e5aa37 diff --git a/src/daemon.c b/src/daemon.c index f0ccd3e..a4d0fd4 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ @@ -27,10 +27,6 @@ #include #endif -#if HAVE_SYS_STAT_H -#include -#endif - #include #if HAVE_PWD_H @@ -53,7 +49,7 @@ static void write_pidfile(int pid_fd) yaz_log(YLOG_FATAL|YLOG_ERRNO, "ftruncate"); exit(1); } - if (write(pid_fd, buf, strlen(buf)) != strlen(buf)) + if (write(pid_fd, buf, strlen(buf)) != (int) strlen(buf)) { yaz_log(YLOG_FATAL|YLOG_ERRNO, "write"); exit(1); @@ -274,7 +270,9 @@ int yaz_daemon(const char *progname, /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab */ +