Commit bee10796 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use fixed size string for extension. This is more DSO friendly

parent e40d134c
...@@ -187,7 +187,7 @@ struct httpd_client_t ...@@ -187,7 +187,7 @@ struct httpd_client_t
*****************************************************************************/ *****************************************************************************/
static struct static struct
{ {
const char *psz_ext; const char psz_ext[8];
const char *psz_mime; const char *psz_mime;
} http_mime[] = } http_mime[] =
{ {
...@@ -230,7 +230,7 @@ static struct ...@@ -230,7 +230,7 @@ static struct
/* end */ /* end */
{ NULL, NULL } { "", "" }
}; };
static const char *httpd_MimeFromUrl( const char *psz_url ) static const char *httpd_MimeFromUrl( const char *psz_url )
...@@ -243,7 +243,7 @@ static const char *httpd_MimeFromUrl( const char *psz_url ) ...@@ -243,7 +243,7 @@ static const char *httpd_MimeFromUrl( const char *psz_url )
{ {
int i; int i;
for( i = 0; http_mime[i].psz_ext != NULL ; i++ ) for( i = 0; http_mime[i].psz_ext[0] ; i++ )
{ {
if( !strcasecmp( http_mime[i].psz_ext, psz_ext ) ) if( !strcasecmp( http_mime[i].psz_ext, psz_ext ) )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment