This commit is contained in:
cfsmp3 2014-09-24 13:04:26 +02:00
parent 84db812769
commit 18f781d099
4 changed files with 4 additions and 3 deletions

View File

@ -6,6 +6,7 @@
- Added nobom parameter, for when files are processed by tools that can't handle the BOM. If using this, files might be not readable under windows.
- Segfault fix when no input files were given
- No more bin output when sending to server + possibility to send TT to server for processing
- Windows: Added the Microsoft redistributable MSVCR120.DLL to both the installation package and the application zip.
0.73 - GSOC
-----------

View File

@ -1,7 +1,7 @@
#ifndef CCX_CCEXTRACTOR_H
#define CCX_CCEXTRACTOR_H
#define VERSION "0.73"
#define VERSION "0.74"
// Load common includes and constants for library usage
#include "ccx_common_platform.h"

View File

@ -581,7 +581,7 @@ int tcp_bind(const char *port, int *family)
if (bind(sockfd, p->ai_addr, p->ai_addrlen) < 0)
{
#if _WIN32
wprintf(L"bind() eror: %ld\n", WSAGetLastError());
wprintf(L"bind() error: %ld\n", WSAGetLastError());
closesocket(sockfd);
#else
mprint("bind() error: %s\n", strerror(errno));