diff --git a/Common/OS.cpp b/Common/OS.cpp
index f7f764dcf18855314914c11325e113bc8762f842..f2de7b175687d614dfe5287c235b08a43ddcb086 100644
--- a/Common/OS.cpp
+++ b/Common/OS.cpp
@@ -208,8 +208,13 @@ int SystemCall(const std::string &command, bool blocking)
     return 1;
   }
   std::string cmd(command);
-  if(!blocking) cmd += " &";
-  Msg::Info("Calling '%s'", cmd.c_str());
+  int pos;
+  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());
   return system(cmd.c_str());
 #endif
 }