dect
/
asterisk
Archived
13
0
Fork 0

Deprecate the "stripmsd" option in favor of dialplan substring variable syntax.

(closes issue #12060)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@104110 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2008-02-25 23:56:47 +00:00
parent c2f361dc8d
commit b8ad84d572
2 changed files with 4 additions and 0 deletions

View File

@ -157,6 +157,9 @@ Channel Drivers:
to modify modules.conf to add another "noload" line to ensure that only one of
these three modules gets loaded.
* Zap: The "msdstrip" option has been deprecated, as it provides no value over
the method of stripping digits in the dialplan using variable substring syntax.
Configuration:
* pbx_dundi.c: tos parameter changed to use new values. Old values like lowdelay,

View File

@ -13347,6 +13347,7 @@ static int process_zap(struct zt_chan_conf *confp, struct ast_variable *v, int r
} else if (!strcasecmp(v->name, "mohsuggest")) {
ast_copy_string(confp->chan.mohsuggest, v->value, sizeof(confp->chan.mohsuggest));
} else if (!strcasecmp(v->name, "stripmsd")) {
ast_log(LOG_NOTICE, "Configuration option \"%s\" has been deprecated. Please use dialplan instead\n", v->name);
confp->chan.stripmsd = atoi(v->value);
} else if (!strcasecmp(v->name, "jitterbuffers")) {
numbufs = atoi(v->value);