Archived
14
0
Fork 0

Minor change to use Asterisk macros

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@109841 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2008-03-19 04:09:55 +00:00
parent f4fab2eaf1
commit 8672fe3596

View file

@ -136,13 +136,16 @@ static AST_RWLIST_HEAD_STATIC(uri_redirects, http_uri_redirect);
static const char *ftype2mtype(const char *ftype, char *wkspace, int wkspacelen)
{
int x;
if (ftype) {
for (x=0;x<sizeof(mimetypes) / sizeof(mimetypes[0]); x++) {
for (x = 0; x < ARRAY_LEN(mimetypes); x++) {
if (!strcasecmp(ftype, mimetypes[x].ext))
return mimetypes[x].mtype;
}
}
snprintf(wkspace, wkspacelen, "text/%s", ftype ? ftype : "plain");
snprintf(wkspace, wkspacelen, "text/%s", S_OR(ftype, "plain"));
return wkspace;
}