From a8427d34790b5165cb7031d194e9ecd203a35d0c Mon Sep 17 00:00:00 2001 From: Cinders Date: Sun, 1 Dec 2013 18:47:22 -0700 Subject: [PATCH] FIRE-12289: Fix display of missing T in debug permissions --- indra/llinventory/llpermissions.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/indra/llinventory/llpermissions.cpp b/indra/llinventory/llpermissions.cpp index 2608f5e480..9c3bad711a 100755 --- a/indra/llinventory/llpermissions.cpp +++ b/indra/llinventory/llpermissions.cpp @@ -1150,6 +1150,8 @@ void mask_to_string(U32 mask, char* str) { *str = ' '; } + str++; + // OpenSim export permission if (mask & PERM_EXPORT) { @@ -1159,8 +1161,8 @@ void mask_to_string(U32 mask, char* str) { *str = ' '; } -// str++; +// *str = '\0'; }