Skip to content
Snippets Groups Projects
Commit 15e01652 authored by Rene Brun's avatar Rene Brun
Browse files

From Axel:

No '@' in file IDs for MSI.


git-svn-id: http://root.cern.ch/svn/root/trunk@20368 27541ba8-7e3a-0410-8455-c3a389f83636
parent a1e10b8b
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,7 @@ string MSIDirEntry::GetMyId() const {
std::replace(ret.begin(), ret.end(), '-', '_');
std::replace(ret.begin(), ret.end(), '#', '_');
std::replace(ret.begin(), ret.end(), '~', '_');
std::replace(ret.begin(), ret.end(), '@', '_');
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment