diff options
author | Joseph Henry <joseph.henry@gmail.com> | 2015-10-30 17:00:30 -0700 |
---|---|---|
committer | Joseph Henry <joseph.henry@gmail.com> | 2015-10-30 17:00:30 -0700 |
commit | db473beb480aecf4373a8d3a77b59cddc4d580df (patch) | |
tree | e631a4f8079f5148cf2b74c71e8ccf33d72e1e91 /netcon/NetconUtilities.cpp | |
parent | 96eb0ce49262b5a8a7a99993733d52dbcf135f01 (diff) | |
download | infinitytier-db473beb480aecf4373a8d3a77b59cddc4d580df.tar.gz infinitytier-db473beb480aecf4373a8d3a77b59cddc4d580df.zip |
Fixed accept return value / errno bug, also fdret_sock return bug
Diffstat (limited to 'netcon/NetconUtilities.cpp')
-rw-r--r-- | netcon/NetconUtilities.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netcon/NetconUtilities.cpp b/netcon/NetconUtilities.cpp index 45332512..83e3c1d2 100644 --- a/netcon/NetconUtilities.cpp +++ b/netcon/NetconUtilities.cpp @@ -44,13 +44,13 @@ namespace ZeroTier { void dwr(char *fmt, ... ) { -//#ifdef ZT_DEBUG + va_list ap; va_start(ap, fmt); vfprintf(stderr, fmt, ap); fflush(stderr); va_end(ap); -//#endif + } void clearscreen() |