diff -u opal-2.2.11~dfsg1/debian/changelog opal-2.2.11~dfsg1/debian/changelog --- opal-2.2.11~dfsg1/debian/changelog +++ opal-2.2.11~dfsg1/debian/changelog @@ -1,3 +1,13 @@ +opal (2.2.11~dfsg1-5~ppa1) intrepid; urgency=low + + [ David Gibson ] + + * Don't quote nonce count in Authorization header, this fixes + problems connection to some SIP services including NodePhone + (Internode, Australia). Already fixed in upstream SVN. + + -- David Gibson Wed, 12 Nov 2008 20:51:58 +1100 + opal (2.2.11~dfsg1-4) unstable; urgency=low [ Kilian Krause ] only in patch2: unchanged: --- opal-2.2.11~dfsg1.orig/src/sip/sippdu.cxx +++ opal-2.2.11~dfsg1/src/sip/sippdu.cxx @@ -1468,8 +1468,8 @@ auth << ", " << "response=\"" << AsHex(response) << "\", " << "cnonce=\"" << cnonce << "\", " - << "nc=\"" << nc << "\", " - << "qop=\"" << qop << "\""; + << "nc=" << nc << ", " + << "qop=" << qop; } else { digestor.Process(AsHex(a2));