Merge 1.4.1 r601:602 into trunk

This commit is contained in:
Nick Bolton 2010-06-12 18:32:25 +00:00
parent b62582444e
commit 351818a4db
2 changed files with 7 additions and 2 deletions

View file

@ -118,7 +118,12 @@ CArchAppUtilWindows::getServiceArgs() const
i++;
}
else {
argBuf << " " << __argv[i];
if (strchr(arg, ' ') != NULL) {
// surround argument with quotes if it contains a space
argBuf << " \"" << arg << "\"";
} else {
argBuf << " " << arg;
}
}
}
return argBuf.str();