Fix SLVoice erroring when log folder path has a space in it.

Thanks to Nomade and Melissa for the help tracking this!
This commit is contained in:
Inusaito Sayori
2015-01-13 21:00:57 -05:00
parent 4d29117148
commit 9bd9cb697e

View File

@@ -889,7 +889,7 @@ void LLVivoxVoiceClient::stateMachine()
log_folder.resize(log_folder.size()-1); log_folder.resize(log_folder.size()-1);
} }
args += " -lf "; args += " -lf ";
args += log_folder; args += '"' + log_folder + '"';
// Singu Note: omit shutdown timeout for Linux, as we are using 2.x version of the SDK there // Singu Note: omit shutdown timeout for Linux, as we are using 2.x version of the SDK there
// Singu TODO: Remove this when the Vivox SDK 4.x is working on Linux // Singu TODO: Remove this when the Vivox SDK 4.x is working on Linux