fix typo: setb -> setp
robs [Tue, 20 Nov 2001 13:11:12 +0000 (13:11 +0000)]
libfcgi/fcgio.cpp

index 5edd363..fc05912 100644 (file)
@@ -1,5 +1,5 @@
 //
-// $Id: fcgio.cpp,v 1.7 2001/11/20 03:24:19 robs Exp $
+// $Id: fcgio.cpp,v 1.8 2001/11/20 13:11:12 robs Exp $
 //
 // Allows you communicate with FastCGI streams using C++ iostreams
 //
@@ -91,8 +91,8 @@ void fcgi_streambuf::reset(void)
 {\r
     // it should be ok to set up both the get and put areas\r
     char * end = this->buf + this->bufsize;\r
-    this->setg(this->buf, this->buf, end);\r
-    this->setb(this->buf, end);\r
+    setg(this->buf, this->buf, end);\r
+    setp(this->buf, end);\r
 }\r
 \r
 streambuf * fcgi_streambuf::setbuf(char * buf, int len)