Updates:
        Status: Fixed
        Owner: chipx86
        Labels: Milestone-Release1.5 Component-Accounts

Comment #6 on issue 1793 by chipx86: Authentication failure with full gecos
http://code.google.com/p/reviewboard/issues/detail?id=1793

Yeah, this should now be fixed on master (b7889fc) and release-1.0.x (25e4965).

This will be part of the upcoming Review Board 1.5 RC2 release. However, you can make the fix yourself short-term. This will help to verify it, though from your example and from others, it appears to work in my testing.

Open reviewboard/reviewboard/accounts/backends.py and find 'get_or_create_user' in the 'NISBackend' class. There will be a line that looks like:

    names = passwd[4].split(' ', 1)

Change that to:

    names = passwd[4].split(',')[0].split(' ', 1)

--
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-iss...@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.

Reply via email to