FIRE-12289: Fix display of missing T in debug permissions

Cinders 2013-12-01 18:47:22 -07:00
parent 1abb9d95f1
commit a8427d3479
1 changed files with 3 additions and 1 deletions

View File

@ -1150,6 +1150,8 @@ void mask_to_string(U32 mask, char* str)
{
*str = ' ';
}
str++;
// <FS:CR> OpenSim export permission
if (mask & PERM_EXPORT)
{
@ -1159,8 +1161,8 @@ void mask_to_string(U32 mask, char* str)
{
*str = ' ';
}
// </FS:CR>
str++;
// </FS:CR>
*str = '\0';
}