aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 5d5206567..809380368 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -5905,13 +5905,11 @@ static enum parse_register_result parse_register_contact(struct sip_pvt *pvt, st
it
*/
if (ast_strlen_zero(c) && ast_strlen_zero(expires)) {
+ /* If we have an active registration, tell them when the registration is going to expire */
if ((p->expire > -1) && !ast_strlen_zero(p->fullcontact)) {
- /* tell them when the registration is going to expire */
pvt->expiry = ast_sched_when(sched, p->expire);
- return PARSE_REGISTER_QUERY;
- } else {
- return PARSE_REGISTER_FAILED;
- }
+ }
+ return PARSE_REGISTER_QUERY;
} else if (!strcasecmp(c, "*") || !expiry) { /* Unregister this peer */
/* This means remove all registrations and return OK */
memset(&p->addr, 0, sizeof(p->addr));