]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Remove the attempt at reporting configuration errors in sip.conf. This can
authorRussell Bryant <russell@russellbryant.com>
Wed, 11 Apr 2007 14:02:54 +0000 (14:02 +0000)
committerRussell Bryant <russell@russellbryant.com>
Wed, 11 Apr 2007 14:02:54 +0000 (14:02 +0000)
cause a bunch of improper messages when using realtime.  I give up.  As oej
tried to convince me when I put this in, there is just no easy way to do it.
(inspired by a message on the -dev list)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@61376 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 474b5fdda12e1b7258af7259465720f88c72b497..448dc00c63e6cb8df5c4cacdabb3a60e9463e4d1 100644 (file)
@@ -12630,8 +12630,7 @@ static struct sip_peer *build_peer(const char *name, struct ast_variable *v, int
                                ast_log(LOG_WARNING, "Qualification of peer '%s' should be 'yes', 'no', or a number of milliseconds at line %d of sip.conf\n", peer->name, v->lineno);
                                peer->maxms = 0;
                        }
-               } else if (strcasecmp(v->name, "type"))
-                       ast_log(LOG_WARNING, "Ignoring unknown option '%s' at line %d of sip.conf!\n", v->name, v->lineno);
+               }
                v = v->next;
        }
        if (!ast_test_flag((&global_flags_page2), SIP_PAGE2_IGNOREREGEXPIRE) && ast_test_flag(&peer->flags_page2, SIP_PAGE2_DYNAMIC) && realtime) {
@@ -12927,9 +12926,8 @@ static int reload_config(void)
                        }
                } else if (!strcasecmp(v->name, "callevents")) {
                        callevents = ast_true(v->value);
-               } else
-                       ast_log(LOG_WARNING, "Ignoring unknown option '%s' at line %d of sip.conf!\n", v->name, v->lineno);
-                v = v->next;
+               }
+               v = v->next;
        }
 
        if (!allow_external_domains && AST_LIST_EMPTY(&domain_list)) {
@@ -12943,8 +12941,7 @@ static int reload_config(void)
                /* Format for authentication is auth = username:password@realm */
                if (!strcasecmp(v->name, "auth")) {
                        authl = add_realm_authentication(authl, v->value, v->lineno);
-               } else
-                       ast_log(LOG_WARNING, "Ignoring unknown option '%s' at line %d of sip.conf!\n", v->name, v->lineno);
+               }
                v = v->next;
        }