From d83412e9d4ff5a11eb128de5079c465a63709541 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 4 Feb 2010 21:32:45 +0000 Subject: some cleanup --- src/sysExec.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/sysExec.cpp') diff --git a/src/sysExec.cpp b/src/sysExec.cpp index 6e291d9..9fc6e10 100644 --- a/src/sysExec.cpp +++ b/src/sysExec.cpp @@ -38,32 +38,32 @@ #include "log.h" #include "anytunError.h" -//use system specific signal handler +//use system specific sys exec #ifndef _MSC_VER #include "sysExec.hpp" #else - #include "win32/sysExec.hpp" +#include "win32/sysExec.hpp" #endif SysExec::SysExec(std::string const& script) : script_(script),closed_(false),return_code_(0) { - doExec(script, StringVector(), StringList()); + doExec(StringVector(), StringList()); } SysExec::SysExec(std::string const& script, StringVector const& args) : script_(script),closed_(false),return_code_(0) { - doExec(script, args, StringList()); + doExec(args, StringList()); } SysExec::SysExec(std::string const& script, StringList const& env) : script_(script),closed_(false),return_code_(0) { - doExec( script, StringVector(), env); + doExec(StringVector(), env); } SysExec::SysExec(std::string const& script, StringVector const& args, StringList const& env) : script_(script),closed_(false),return_code_(0) { - doExec( script, args, env); + doExec(args, env); } int SysExec::getReturnCode() const -- cgit v1.2.3