rs=mscott
OS/2 only - use 55 as the limit for folder names on OS/2


git-svn-id: svn://10.0.0.236/trunk@104326 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkaply%us.ibm.com 2001-10-01 18:44:22 +00:00
parent 5efa6c424d
commit 510114e522

View File

@ -262,7 +262,7 @@ nsresult NS_MsgHashIfNecessary(nsCAutoString &name)
const PRUint32 MAX_LEN = 55;
#elif defined(XP_OS2)
nsCAutoString illegalChars("\"/\\[]:;=,|?<>*$. ");
const PRUint32 MAX_LEN = 8;
const PRUint32 MAX_LEN = 55;
#else
#error need_to_define_your_max_filename_length
#endif