Skip to content
Snippets Groups Projects
Commit ef9a31ee authored by Francois Henrotte's avatar Francois Henrotte
Browse files

revert

parent d955a57c
No related branches found
No related tags found
No related merge requests found
...@@ -208,12 +208,7 @@ int SystemCall(const std::string &command, bool blocking) ...@@ -208,12 +208,7 @@ int SystemCall(const std::string &command, bool blocking)
return 1; return 1;
} }
std::string cmd(command); std::string cmd(command);
int pos; if(!blocking) cmd += " &";
if(!blocking) cmd.append(" &");
if((pos=cmd.find("incomp_ssh")) != std::string::npos){
cmd.assign(cmd.substr(pos+7));
cmd.append(" '");
}
Msg::Info("Calling <%s>", cmd.c_str()); Msg::Info("Calling <%s>", cmd.c_str());
return system(cmd.c_str()); return system(cmd.c_str());
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment