From: Jason Stephenson Date: Thu, 30 Jun 2011 18:02:47 +0000 (-0400) Subject: AZ field also needs to be in the output message. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=671dc256167b52faea4b331318ebc5178fc31138;p=working%2FSIPServer.git AZ field also needs to be in the output message. Signed-off-by: Jason Stephenson Signed-off-by: Dan Scott --- diff --git a/Sip.pm b/Sip.pm index 37b3814..9dea1c1 100644 --- a/Sip.pm +++ b/Sip.pm @@ -230,7 +230,8 @@ sub write_msg { if (defined($self->{seqno})) { $msg .= 'AY' . $self->{seqno}; } - $msg .= checksum($msg . 'AZ'); + $msg .= 'AZ'; + $msg .= checksum($msg); }