summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 00a2a16cb..f94f45701 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -23911,8 +23911,9 @@ static int handle_response_register(struct sip_pvt *p, int resp, const char *res
}
tmptmp = strcasestr(contact, "expires=");
if (tmptmp) {
- if (sscanf(tmptmp + 8, "%30d;", &expires) != 1)
+ if (sscanf(tmptmp + 8, "%30d", &expires) != 1) {
expires = 0;
+ }
}
}