projects
/
working
/
SIPServer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac08882
)
'0' is a valid sequence number (it comes after '9'), so we have
author
djfiander
<djfiander>
Thu, 4 May 2006 01:21:42 +0000
(
01:21
+0000)
committer
djfiander
<djfiander>
Thu, 4 May 2006 01:21:42 +0000
(
01:21
+0000)
to see if the sequence number is set, not just if it's true.
Sip.pm
patch
|
blob
|
history
diff --git
a/Sip.pm
b/Sip.pm
index
a42b270
..
36a0f53
100644
(file)
--- a/
Sip.pm
+++ b/
Sip.pm
@@
-140,7
+140,7
@@
sub write_msg {
my $cksum;
if ($error_detection) {
- if (
$self->{seqno}
) {
+ if (
defined($self->{seqno})
) {
$msg .= 'AY' . $self->{seqno};
}
$msg .= 'AZ';