Skip to content

Commit

Permalink
Fonctionne si le content-type est folde.
Browse files Browse the repository at this point in the history
  • Loading branch information
george committed Jun 7, 2004
1 parent 548d37b commit 0e2126d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/enc/enc_strings.c
Original file line number Diff line number Diff line change
Expand Up @@ -1173,12 +1173,12 @@ const char *parse_ContentType_header (flrn_char *contenttype_line) {
buf=fl_strchr(buf,fl_static(';'));
if (buf) {
buf++;
while ((*buf) && (fl_isblank(*buf))) buf++;
while ((*buf) && (fl_isspace(*buf))) buf++;
if (fl_strncasecmp(buf,fl_static("charset"),7)==0) {
buf=fl_strchr(buf,fl_static('='));
if (buf) {
buf++;
while ((*buf) && (fl_isblank(*buf))) buf++;
while ((*buf) && (fl_isspace(*buf))) buf++;
if (*buf) {
if (*buf==fl_static('"')) buf++;
buf2=buf;
Expand Down

0 comments on commit 0e2126d

Please sign in to comment.