Merge "sip_to_pjsip: Write username even without authname."

changes/40/3640/1
Joshua Colp 9 years ago committed by Gerrit Code Review
commit 560c2abdec

@ -995,9 +995,8 @@ class Registration:
if hasattr(self, 'secret') and self.secret:
set_value('password', self.secret, auth_section, pjsip, nmapped,
'auth')
if hasattr(self, 'authuser'):
set_value('username', self.authuser or self.user, auth_section,
pjsip, nmapped, 'auth')
set_value('username', self.authuser if hasattr(self, 'authuser')
else self.user, auth_section, pjsip, nmapped, 'auth')
set_value('outbound_auth', auth_section, section, pjsip, nmapped,
'registration')

Loading…
Cancel
Save