X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=store.cc;h=a156a570f791c3539ec9f457533fd5b04287dbb7;hb=79c9c740d9b78e357dd66cb9a4b77d03a5076f3b;hp=caec3475ade588c04e7e9e33571ff2d30bd2d063;hpb=977ee3e11dfea651ed87d92c001067158b7c2ba8;p=cumulus.git diff --git a/store.cc b/store.cc index caec347..a156a57 100644 --- a/store.cc +++ b/store.cc @@ -98,10 +98,10 @@ int spawn_filter(int fd_out, const char *program, pid_t *filter_pid) /* Create a child process which can exec() the filter program. */ pid = fork(); - if (filter_pid < 0) + if (pid < 0) throw IOException("Unable to fork filter process"); - if (filter_pid > 0) { + if (pid > 0) { /* Parent process */ close(fds[0]); cloexec(fds[1]);