summaryrefslogtreecommitdiff
path: root/src/sysExec.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2010-02-04 00:53:18 +0000
committerChristian Pointner <equinox@anytun.org>2010-02-04 00:53:18 +0000
commit338da94bea80a16c737117b614ace2f4bb4446a3 (patch)
tree6d9b1937374c3648aa91e77654fc3dc25bf4b3b0 /src/sysExec.h
parentwin32 support for sysExec, sysExec.hpp arch-specific files introduced (diff)
fixed build on posix
some cleanup
Diffstat (limited to 'src/sysExec.h')
-rw-r--r--src/sysExec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysExec.h b/src/sysExec.h
index 28e6d23..02ac00e 100644
--- a/src/sysExec.h
+++ b/src/sysExec.h
@@ -60,7 +60,7 @@ class SysExec
void doExec(std::string const& script, StringVector const& args, StringList const& env);
std::string script_;
-
+ bool closed_;
#ifdef _MSC_VER
PROCESS_INFORMATION process_info_;
DWORD return_code_;
@@ -69,7 +69,7 @@ class SysExec
int pipefd_;
int return_code_;
#endif
- bool closed_;
+
};