summaryrefslogtreecommitdiff
path: root/src/crypt_chain.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-11 10:39:51 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-11 10:39:51 +0100
commit62701cd6827b885fdfaef5159a542ea25a6c24b7 (patch)
treee713a8b9c6b8bd2cbca47d7b4bb39ce2e9087db1 /src/crypt_chain.cc
parent0f1518f21f26488a5c5511f04996155682ba5514 (diff)
More win32 build fixes.
Diffstat (limited to 'src/crypt_chain.cc')
-rw-r--r--src/crypt_chain.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/crypt_chain.cc b/src/crypt_chain.cc
index ee1b2486..d495c970 100644
--- a/src/crypt_chain.cc
+++ b/src/crypt_chain.cc
@@ -33,7 +33,11 @@ using std::cout;
static void command (char const * c)
{
int const r = system (c);
+#ifdef LIBDCP_WINDOWS
if (r) {
+#else
+ if (WEXITSTATUS (r)) {
+#endif
stringstream s;
s << "error in " << c << "\n";
throw libdcp::MiscError (s.str());