freebsd-ports/www/cgicc/files/patch-cgicc::CgiEnvironment.cpp
Kirill Ponomarev 970254693c - Update to 3.2.2
- Fix dead URL
- Utilize DOCSDIR
- Assign maintainership to submitter

PR:		ports/64026
Submitted by:	Sergey Matveychuk <sem@ciam.ru>
2004-03-12 14:55:40 +00:00

12 lines
427 B
C++

--- cgicc/CgiEnvironment.cpp.orig Thu Mar 11 01:29:33 2004
+++ cgicc/CgiEnvironment.cpp Thu Mar 11 01:29:42 2004
@@ -138,7 +138,7 @@
std::string::const_iterator data_iter;
for(data_iter = data.begin(); data_iter != data.end(); ++data_iter,++wscount)
- if(std::isspace(*data_iter) == 0)
+ if(isspace(*data_iter) == 0)
break;
// Per RFC 2091, do not unescape the data (thanks to afm@othello.ch)