summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-03-18 12:51:52 +0100
committerjcid <devnull@localhost>2008-03-18 12:51:52 +0100
commit00247d9171c3215ececb71b2a1961878029d8f8b (patch)
tree243aaeb49e96add679381e436fa099c54517f14f /src
parent2287bc28d578dd6d3e990fc4c7a01e8045701622 (diff)
- Re introduced the accidentaly removed "inbuf_t".
Diffstat (limited to 'src')
-rw-r--r--src/html.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc
index 7519ed49..6338315a 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -3844,7 +3844,8 @@ static Dstr *Html_encode_text(iconv_t encoder, Dstr *input)
int rc = 0;
Dstr *output;
const int bufsize = 128;
- char *buffer, *inPtr, *outPtr;
+ inbuf_t *inPtr;
+ char *buffer, *outPtr;
size_t inLeft, outRoom;
bool bad_chars = false;