Browse Source

- fix for md5 check, send the md5 properly

ScottBrogden 8 years ago
parent
commit
8effb58f59
1 changed files with 1 additions and 1 deletions
  1. 1 1
      FileSend.cpp

+ 1 - 1
FileSend.cpp

@@ -156,7 +156,7 @@ BOOL CFileSend::SendFile(CString csFile)
 
 					if (calcMd5)
 					{
-						//md5.MD5Update((unsigned char *)pBuffer, lReadBytes);
+						md5.MD5Update((unsigned char *)pBuffer, lReadBytes);
 					}
 					
 				}while(lReadBytes >= CHUNK_WRITE_SIZE);