aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-04-13 19:52:15 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-04-13 19:52:15 +0000
commit72e06e05a19c86b919b5ff389911afc1a73d19b3 (patch)
tree01bb61f0a2e0a1d8bdc7b4b4cdad1165a87ae3a4 /src
parent1f0f1b2892ceea3628e09a13eb60815e895b3f1e (diff)
downloadmpd-72e06e05a19c86b919b5ff389911afc1a73d19b3.tar.gz
mpd-72e06e05a19c86b919b5ff389911afc1a73d19b3.tar.xz
mpd-72e06e05a19c86b919b5ff389911afc1a73d19b3.zip
fix some misc chld signal handling for update process
git-svn-id: https://svn.musicpd.org/mpd/trunk@737 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r--src/directory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/directory.c b/src/directory.c
index 370744aae..641ab46ed 100644
--- a/src/directory.c
+++ b/src/directory.c
@@ -120,7 +120,9 @@ void directory_sigChldHandler(int pid, int status) {
"non-TERM signal: %i\n",
WTERMSIG(status));
}
- else if(WEXITSTATUS(status)==EXIT_SUCCESS) {
+ else if(!WIFSIGNALED(status) &&
+ WEXITSTATUS(status)==EXIT_SUCCESS)
+ {
DEBUG("direcotry_sigChldHandler: "
"updated db succesffully\n");
directory_reReadDB = 1;
@@ -150,8 +152,6 @@ int updateInit(FILE * fp, List * pathList) {
directory_updatePid = fork();
if(directory_updatePid==0) {
/* child */
- struct sigaction sa;
-
clearPlayerPid();
unblockSignals();