[project @ 2005-07-18 14:22:26 by jmb]
Fix erroneous attempt to uppercase address of character instead of the character itself svn path=/import/netsurf/; revision=1802
This commit is contained in:
parent
c5e120e43d
commit
b37420136c
|
@ -641,7 +641,7 @@ char *form_acceptable_charset(struct form *form)
|
|||
|
||||
/* make it upper case */
|
||||
for (c = temp; *c; c++)
|
||||
*c = toupper(c);
|
||||
*c = toupper(*c);
|
||||
|
||||
/* is UTF-8 specified? */
|
||||
c = strstr(temp, "UTF-8");
|
||||
|
|
Loading…
Reference in New Issue