summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2010-01-29 00:42:27 +0000
committerpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2010-01-29 00:42:27 +0000
commitc1b3df1a663c07df82c8b09dfa4760e5a218466e (patch)
treef1e73c315107089ade90e76695224b1f97f8b77f
parent181d88456435264dd2631b2ce5009d78fbe2e680 (diff)
SIP: allow any realm
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@217 c086bb3d-8645-0410-b8da-73a8550f86e7
-rw-r--r--Protocols/SIP/SIPProto.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Protocols/SIP/SIPProto.cpp b/Protocols/SIP/SIPProto.cpp
index 1cecb02..5004d90 100644
--- a/Protocols/SIP/SIPProto.cpp
+++ b/Protocols/SIP/SIPProto.cpp
@@ -676,8 +676,7 @@ int SIPProto::Connect()
cfg.cred_count = 1;
- TcharToSip realm(CleanupSip(opts.domain));
- cfg.cred_info[0].realm = pj_str(realm);
+ cfg.cred_info[0].realm = pj_str("*");
cfg.cred_info[0].scheme = pj_str("digest");
TcharToSip username(opts.username);
cfg.cred_info[0].username = pj_str(username);