From: Dan Scott Date: Thu, 23 Jun 2011 19:59:19 +0000 (-0400) Subject: Checksum calc needs to include the 'AZ' portion X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6ee1f1e60d786f16329bfce2cc1d982132caad6d;p=SIPServer.git Checksum calc needs to include the 'AZ' portion Signed-off-by: Dan Scott Signed-off-by: Jason Stephenson --- diff --git a/Sip.pm b/Sip.pm index 0922e84..37b3814 100644 --- a/Sip.pm +++ b/Sip.pm @@ -230,7 +230,7 @@ sub write_msg { if (defined($self->{seqno})) { $msg .= 'AY' . $self->{seqno}; } - $msg .= 'AZ' . checksum($msg); + $msg .= checksum($msg . 'AZ'); }