[Home]

Summary:ASTERISK-00390: Wrong error message - iax.conf instead of sip.conf
Reporter:Olle Johansson (oej)Labels:
Date Opened:2003-10-16 07:32:14Date Closed:2004-09-25 02:46:18
Priority:TrivialRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:From the channel_sip.c source:
} else if (!strcasecmp(v->name, "qualify")) {
                               if (!strcasecmp(v->value, "no")) {
                                       peer->maxms = 0;
                               } else if (!strcasecmp(v->value, "yes")) {
                                       peer->maxms = DEFAULT_MAXMS;
                               } else if (sscanf(v->value, "%d", &peer->maxms) != 1) {
                                       ast_log(LOG_WARNING, "Qualification of peer '%s' should be 'yes', 'no', or a number of milliseconds at line %d of iax.conf\n", peer->name, v->lineno);
                                       peer->maxms = 0;
                               }

---
It should propably be "sip.conf" ...
Comments:By: Mark Spencer (markster) 2003-10-22 18:04:46

Fixed in CVS