cdfc7eb5e6fca9e67f950925ba6e554fa55be0ad
[openwrt/svn-archive/archive.git] / libs / fcgi / patches / 100-fcgio-int-type-fix.patch
1 Index: fcgi-2.4.0/include/fcgio.h
2 ===================================================================
3 --- fcgi-2.4.0.orig/include/fcgio.h 2007-07-17 13:30:28.000000000 +0200
4 +++ fcgi-2.4.0/include/fcgio.h 2007-07-17 13:30:28.000000000 +0200
5 @@ -77,10 +77,10 @@
6 virtual int sync();
7
8 // Remove and return the current character.
9 - virtual int uflow();
10 + virtual int_type uflow();
11
12 // Fill the get area (if buffered) and return the current character.
13 - virtual int underflow();
14 + virtual int_type underflow();
15
16 // Use a buffer. The only reasons that a buffer would be useful is
17 // to support the use of the unget()/putback() or seek() methods. Using