From da6b55669646968d03d9d7ad6dae74c38fc6bcc0 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 29 May 2014 21:32:53 +0200 Subject: [PATCH] mgcp: Fix the name of the AUEP command --- callagent/MGCPCommands.st | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/callagent/MGCPCommands.st b/callagent/MGCPCommands.st index 1e316f0..921701c 100644 --- a/callagent/MGCPCommands.st +++ b/callagent/MGCPCommands.st @@ -192,16 +192,16 @@ MGCPCommandBase subclass: MGCPDLCXCommand [ ] ] -MGCPCommandBase subclass: MGCPAUEPComamnd [ +MGCPCommandBase subclass: MGCPAUEPCommand [ - MGCPAUEPComamnd class >> verb [ + MGCPAUEPCommand class >> verb [ ^ 'AUEP' ] - MGCPAUEPComamnd class >> createAUEP: anEndpoint [ + MGCPAUEPCommand class >> createAUEP: anEndpoint [ ^ (self create: anEndpoint) yourself ]