dect
/
asterisk
Archived
13
0
Fork 0

Warning be gone!

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43264 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2006-09-19 15:36:25 +00:00
parent 6433ea9781
commit defea1a6a4
1 changed files with 5 additions and 10 deletions

View File

@ -1251,24 +1251,19 @@ int ast_codec_choose(struct ast_codec_pref *pref, int formats, int find_best)
void ast_parse_allow_disallow(struct ast_codec_pref *pref, int *mask, const char *list, int allowing)
{
char *parse;
char *this;
int format;
char *psize;
int framems;
char *parse = NULL, *this = NULL, *psize = NULL;
int format = 0, framems = 0;
parse = ast_strdupa(list);
while ((this = strsep(&parse, ","))) {
framems = 0;
if ((psize = strrchr(this, ':'))) {
*psize = '\0';
psize++;
*psize++ = '\0';
if (option_debug)
ast_log(LOG_DEBUG,"Packetization for codec: %s is %s\n", this, psize);
framems = strtol(psize,NULL,10);
if (framems == LONG_MIN || framems == LONG_MAX) {
framems = atoi(psize);
if (framems < 0)
framems = 0;
}
}
if (!(format = ast_getformatbyname(this))) {
ast_log(LOG_WARNING, "Cannot %s unknown format '%s'\n", allowing ? "allow" : "disallow", this);