From: Gonzalo A. <ga...@us...> - 2006-09-17 23:10:12
|
Update of /cvsroot/mod-c/ehtml/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv3103/src Modified Files: DiskSessionDriver.cpp Log Message: * Fixed a typo in debugging messages. Index: DiskSessionDriver.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/DiskSessionDriver.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DiskSessionDriver.cpp 13 Sep 2006 18:58:15 -0000 1.5 --- DiskSessionDriver.cpp 17 Sep 2006 23:10:07 -0000 1.6 *************** *** 124,128 **** string lname = locked_filename(id); if (rename(name.c_str(), lname.c_str())) { ! Application()->Error("stale session (id=%s, rename error=%s)\n", id.hex().c_str(), strerror(errno)); return NULL; --- 124,128 ---- string lname = locked_filename(id); if (rename(name.c_str(), lname.c_str())) { ! Application()->Error("stale session (id=%s, rename error=%s)", id.hex().c_str(), strerror(errno)); return NULL; *************** *** 133,137 **** in >> *dev; } catch (const char*) { ! Application()->Error("corrupt session state (id=%s)\n", id.hex().c_str()); delete dev; --- 133,137 ---- in >> *dev; } catch (const char*) { ! Application()->Error("corrupt session state (id=%s)", id.hex().c_str()); delete dev; *************** *** 139,143 **** } if (!in.eof()) { ! Application()->Error("corrupt session state (id=%s)\n", id.hex().c_str()); delete dev; --- 139,143 ---- } if (!in.eof()) { ! Application()->Error("corrupt session state (id=%s)", id.hex().c_str()); delete dev; |