aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-07-27 10:07:35 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-07-27 10:07:35 +0200
commitc89b725bce9668719b7335a3ae474ce92f6aa032 (patch)
treef44cc63594cb4ce642081ebee8ca4fb65da24460
parenta4abf25a6aa60238e2f7afbdb91cc3a8ebaf3259 (diff)
callagent: Use asString as displayString is not available
-rw-r--r--callagent/MGCPResponse.st4
1 files 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