From 21d395593e04a0229173bda1bade1a214704d1a3 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 24 Jul 2015 12:13:38 +0200 Subject: [PATCH] pharo: Allow converting the authorization message as well We need >>#do: as nextPutAllOn: is not called/doesn't exist in this dialect. --- callagent/authorization/SIPAuthorization.st | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/callagent/authorization/SIPAuthorization.st b/callagent/authorization/SIPAuthorization.st index b40a4eb..64bcd63 100644 --- a/callagent/authorization/SIPAuthorization.st +++ b/callagent/authorization/SIPAuthorization.st @@ -103,6 +103,10 @@ Object subclass: SIPAuthorization [ url: uri. ] + do: aBlock [ + (String streamContents: [:str | self nextPutAllOn: str]) do: aBlock + ] + nextPutAllOn: aStream [ aStream nextPutAll: 'Digest username="';