[Sphere-axis-commits] CVS: Axis drewsky.rc,1.30,1.31 remoteconnection.cpp,1.16,1.17
Brought to you by:
pesterle
From: Philip E. <pes...@us...> - 2002-05-09 04:14:09
|
Update of /cvsroot/sphere-axis/Axis In directory usw-pr-cvs1:/tmp/cvs-serv962 Modified Files: drewsky.rc remoteconnection.cpp Log Message: Slight tweak to the checksum code. This time it will have the correct file name when checking locally. I hope. :-p Updated build number again. Index: drewsky.rc =================================================================== RCS file: /cvsroot/sphere-axis/Axis/drewsky.rc,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** drewsky.rc 9 May 2002 00:00:07 -0000 1.30 --- drewsky.rc 9 May 2002 04:14:04 -0000 1.31 *************** *** 1,4 **** //Microsoft Developer Studio generated resource script. ! // Last compiled 5/8/2002 at 17:57:12 #include "resource.h" --- 1,4 ---- //Microsoft Developer Studio generated resource script. ! // Last compiled 5/8/2002 at 22:12:48 #include "resource.h" *************** *** 2255,2260 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,0,0,7 ! PRODUCTVERSION 1,0,0,7 FILEFLAGSMASK 0x3fL #ifdef _DEBUG --- 2255,2260 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 1,0,0,8 ! PRODUCTVERSION 1,0,0,8 FILEFLAGSMASK 0x3fL #ifdef _DEBUG *************** *** 2274,2278 **** VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "1, 0, 0, 7\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" --- 2274,2278 ---- VALUE "CompanyName", "\0" VALUE "FileDescription", "axis MFC Application\0" ! VALUE "FileVersion", "1, 0, 0, 8\0" VALUE "InternalName", "axis\0" VALUE "LegalCopyright", "Copyright (C) 1998-2002\0" *************** *** 2281,2285 **** VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "1, 0, 0, 7\0" VALUE "SpecialBuild", "\0" END --- 2281,2285 ---- VALUE "PrivateBuild", "\0" VALUE "ProductName", "Axis\0" ! VALUE "ProductVersion", "1, 0, 0, 8\0" VALUE "SpecialBuild", "\0" END Index: remoteconnection.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/remoteconnection.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** remoteconnection.cpp 8 May 2002 18:46:22 -0000 1.16 --- remoteconnection.cpp 9 May 2002 04:14:04 -0000 1.17 *************** *** 1124,1128 **** // Use the same code from the server FILE * pFile; ! pFile = fopen( pszFilename, "r" ); if ( ! pFile ) return chk; --- 1124,1128 ---- // Use the same code from the server FILE * pFile; ! pFile = fopen( LPCTSTR(csFilename), "r" ); if ( ! pFile ) return chk; |