about summary refs log tree commit diff
path: root/src/libstore/store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2004-06-22T11·03+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2004-06-22T11·03+0000
commit5e2cf44a4d5d70f0dbed7b21257bd6d15538b3b2 (patch)
tree026f0ca4fc71c0d563a1de36b86ccad9156fc594 /src/libstore/store.cc
parent84007a09588b21487cbd3869bcb26c3e2c05b605 (diff)
* Put WEXITSTATUS stuff somewhere else.
Diffstat (limited to 'src/libstore/store.cc')
-rw-r--r--src/libstore/store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store.cc b/src/libstore/store.cc
index 2ec93d63bc..9677f84223 100644
--- a/src/libstore/store.cc
+++ b/src/libstore/store.cc
@@ -161,7 +161,7 @@ void copyPath(const Path & src, const Path & dst)
 
     /* Wait for the child to finish. */
     int status = pid.wait(true);
-    if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
+    if (!statusOk(status))
         throw Error(format("cannot copy `%1% to `%2%': child %3%")
             % src % dst % statusToString(status));
 }