From c89b725bce9668719b7335a3ae474ce92f6aa032 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 27 Jul 2015 10:07:35 +0200 Subject: [PATCH] callagent: Use asString as displayString is not available --- callagent/MGCPResponse.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/callagent/MGCPResponse.st b/callagent/MGCPResponse.st index 16cd9c5..d1180e1 100644 --- a/callagent/MGCPResponse.st +++ b/callagent/MGCPResponse.st @@ -121,9 +121,9 @@ Object subclass: MGCPResponse [ asDatagram [ ^String streamContents: [:stream | stream - nextPutAll: code displayString; + nextPutAll: code asString; nextPutAll: ' '; - nextPutAll: transaction displayString. + nextPutAll: transaction asString. responseString ifNotNil: [ stream