mirror of
https://github.com/debauchee/barrier.git
synced 2025-06-17 02:01:41 +02:00
Merge 1.4.1 r601:602 into trunk
This commit is contained in:
parent
b62582444e
commit
351818a4db
2 changed files with 7 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue