mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
only expect the JID user node. Submitted by: colby.dillion@gmail.com Obtained from: google-talk-open newsgroup
11 lines
453 B
C
11 lines
453 B
C
--- talk/xmpp/saslplainmechanism.h.orig Wed May 10 07:43:35 2006
|
|
+++ talk/xmpp/saslplainmechanism.h Wed May 10 07:44:01 2006
|
|
@@ -48,7 +48,7 @@
|
|
|
|
FormatXmppPassword credential;
|
|
credential.Append("\0", 1);
|
|
- credential.Append(user_jid_.Str());
|
|
+ credential.Append(user_jid_.node());
|
|
credential.Append("\0", 1);
|
|
credential.Append(&password_);
|
|
el->AddText(Base64EncodeFromArray(credential.GetData(), credential.GetLength()));
|