From 904f1e70f298d7f8d73b0c6d779de256874a67e3 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Fri, 2 Jan 2015 07:15:22 +0000 Subject: [PATCH] fixed: compiling on Debian (it has no MSG_EOF flag) git-svn-id: svn://ttmath.org/publicrep/winix/trunk@1000 e52654a7-88a9-db11-a3e9-0013d4bc506e --- core/app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/app.cpp b/core/app.cpp index fd457e5..10b739c 100644 --- a/core/app.cpp +++ b/core/app.cpp @@ -1833,7 +1833,7 @@ int res; if( res == 0 ) { - send(s, msg.c_str(), msg.size(), MSG_EOF); + send(s, msg.c_str(), msg.size(), 0); } close(s);