summaryrefslogtreecommitdiff
path: root/indra/newview/lllogchat.cpp
diff options
context:
space:
mode:
authorDebi King (Dessie) <dessie@lindenlab.com>2011-06-27 09:35:22 -0400
committerDebi King (Dessie) <dessie@lindenlab.com>2011-06-27 09:35:22 -0400
commit7dac0bd49a0b3b63c179abb57e1dc167d6e37003 (patch)
tree5aecb36eb50c7250cb9420f6ffdee870ffc73c3e /indra/newview/lllogchat.cpp
parent9928016ad9069dc8839ff44128bd99bcefd21f4b (diff)
parent311a431169d81504d70a9424f254b05b5a6c6788 (diff)
reconciled .hgtags
Diffstat (limited to 'indra/newview/lllogchat.cpp')
-rw-r--r--indra/newview/lllogchat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lllogchat.cpp b/indra/newview/lllogchat.cpp
index efc4e23838..ebb5912ace 100644
--- a/indra/newview/lllogchat.cpp
+++ b/indra/newview/lllogchat.cpp
@@ -230,7 +230,7 @@ std::string LLLogChat::makeLogFileName(std::string filename)
std::string LLLogChat::cleanFileName(std::string filename)
{
- std::string invalidChars = "\"\'\\/?*:.<>|";
+ std::string invalidChars = "\"\'\\/?*:.<>|[]{}~"; // Cannot match glob or illegal filename chars
std::string::size_type position = filename.find_first_of(invalidChars);
while (position != filename.npos)
{