Update of /cvsroot/mod-c/ehtml/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv5569/src
Modified Files:
Dictionary.cpp
Log Message:
* Removed debugging messages.
Index: Dictionary.cpp
===================================================================
RCS file: /cvsroot/mod-c/ehtml/src/Dictionary.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Dictionary.cpp 12 Sep 2006 00:21:56 -0000 1.2
--- Dictionary.cpp 12 Sep 2006 14:50:04 -0000 1.3
***************
*** 55,61 ****
istream& operator >> (istream& i, Dictionary& d) {
char line[512];
- printf("reading session data\n");
while (!i.getline(line,sizeof(line)-1).eof()) {
- printf("got line %s\n", line);
char* _k = skip_ws(line);
char* end = skip_word(_k);
--- 55,59 ----
***************
*** 71,75 ****
MemBuf mk(urldecode(k));
MemBuf mv(urldecode(v));
- printf("%s => %s\n", mk.AsString().c_str(), mv.AsString().c_str());
d[mk.AsString()] = mv.AsString();
}
--- 69,72 ----
|