Skip to content

Commit

Permalink
usrloc: fixed missing symbol for ul_cseq_delay
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed May 2, 2020
1 parent 34b9b59 commit d515c93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/usrloc/urecord.c
Expand Up @@ -44,7 +44,7 @@
/*! contact matching mode */
int ul_matching_mode = CONTACT_ONLY;
/*! retransmission detection interval in seconds */
int cseq_delay = 20;
int ul_cseq_delay = 20;

/*!
* \brief Create and initialize new record structure
Expand Down Expand Up @@ -801,7 +801,7 @@ int get_ucontact(urecord_t* _r, str* _c, str* _callid, str* _path, int _cseq,
return -1;
if (_cseq==ptr->cseq) {
ul_get_act_time();
return (ptr->last_modified+cseq_delay>ul_act_time)?-2:-1;
return (ptr->last_modified+ul_cseq_delay>ul_act_time)?-2:-1;
}
}
*_co = ptr;
Expand Down

0 comments on commit d515c93

Please sign in to comment.