[w3m-dev 03657] fputs -> Strfputs

* form.c (form_fputs_decode): use Strfputs()
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2003-01-20 15:22:54 +00:00
parent cfd9a36fd1
commit 2f7904260c
2 changed files with 9 additions and 3 deletions

5
form.c
View File

@@ -1,4 +1,4 @@
/* $Id: form.c,v 1.28 2003/01/15 16:11:43 ukai Exp $ */
/* $Id: form.c,v 1.29 2003/01/20 15:22:59 ukai Exp $ */
/*
* HTML forms
*/
@@ -447,7 +447,8 @@ form_fputs_decode(Str s, FILE * f)
break;
}
}
fputs(conv_str(z, InnerCode, DisplayCode)->ptr, f);
z = conv_str(z, InnerCode, DisplayCode);
Strfputs(z, f);
}