? demo/netdevices ? demo/pio ? demo/shadigest ? doc/commoncpp2.info ? doc/commoncpp2.info-1 ? doc/commoncpp2.info-2 ? doc/commoncpp2.info-3 ? ssl/Makefile ? ssl/Makefile.in ? win32/CCXX2.rc Index: demo/urlfetch.cpp =================================================================== RCS file: /cvsroot/commoncpp/commoncpp2/demo/urlfetch.cpp,v retrieving revision 1.2 diff -d -u -r1.2 urlfetch.cpp --- demo/urlfetch.cpp 8 Mar 2002 23:08:27 -0000 1.2 +++ demo/urlfetch.cpp 16 Mar 2003 03:45:08 -0000 @@ -80,7 +80,8 @@ cout << "loading..." << endl; while(!url.eof()) { - url.read(cbuf, sizeof(cbuf)); + std::istream &streamurl=url; + streamurl.read(cbuf, sizeof(cbuf)); len = url.gcount(); if(len > 0) cout.write(cbuf, len); Index: demo/xmlfetch.cpp =================================================================== RCS file: /cvsroot/commoncpp/commoncpp2/demo/xmlfetch.cpp,v retrieving revision 1.2 diff -d -u -r1.2 xmlfetch.cpp --- demo/xmlfetch.cpp 30 Dec 2002 12:34:36 -0000 1.2 +++ demo/xmlfetch.cpp 16 Mar 2003 03:45:09 -0000 @@ -57,7 +57,8 @@ int read(unsigned char *buffer, int len) { - URLStream::read((char *)buffer, len); + iostream &us=(URLStream&)(*this); + us.read((char *)buffer, len); len = gcount(); return len; }