File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 2222if v .UserExecute
2323 p = replaceBetween(p , 3 , 3 , " x" );
2424end
25- if v .GroupRead
25+ if ~isnan( v .GroupRead ) && logical( v . GroupRead )
2626 p = replaceBetween(p , 4 , 4 , " r" );
2727end
28- if v .GroupWrite
28+ if ~isnan( v .GroupWrite ) && logical( v . GroupWrite )
2929 p = replaceBetween(p , 5 , 5 , " w" );
3030end
31- if v .GroupExecute
31+ if ~isnan( v .GroupExecute ) && logical( v . GroupExecute )
3232 p = replaceBetween(p , 6 , 6 , " x" );
3333end
34- if v .OtherRead
34+ if ~isnan( v .OtherRead ) && logical( v . OtherRead )
3535 p = replaceBetween(p , 7 , 7 , " r" );
3636end
37- if v .OtherWrite
37+ if ~isnan( v .OtherWrite ) && logical( v . OtherWrite )
3838 p = replaceBetween(p , 8 , 8 , " w" );
3939end
40- if v .OtherExecute
40+ if ~isnan( v .OtherExecute ) && logical( v . OtherExecute )
4141 p = replaceBetween(p , 9 , 9 , " x" );
4242end
4343
You can’t perform that action at this time.
0 commit comments