diff options
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/test_wbinfo_sids2xids_int.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/tests/test_wbinfo_sids2xids_int.py b/source3/script/tests/test_wbinfo_sids2xids_int.py index 8826f53f1f..1b79e005dc 100755 --- a/source3/script/tests/test_wbinfo_sids2xids_int.py +++ b/source3/script/tests/test_wbinfo_sids2xids_int.py @@ -34,7 +34,7 @@ gids=[] for line in sids2xids.split('\n'): result = line.split(' ')[2:] - if result[0] == 'gid': + if result[0] == 'gid' or result[0] == 'uid/gid': gid = result[1] else: gid = '' |