aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hello/test_hello.c2
-rw-r--r--src/util/disk.c4
-rw-r--r--src/util/network.c2
3 files changed, 3 insertions, 5 deletions
diff --git a/src/hello/test_hello.c b/src/hello/test_hello.c
index 0efbdee72..bdabc72ea 100644
--- a/src/hello/test_hello.c
+++ b/src/hello/test_hello.c
@@ -25,7 +25,7 @@
25#include "platform.h" 25#include "platform.h"
26#include "gnunet_hello_lib.h" 26#include "gnunet_hello_lib.h"
27 27
28#define DEBUG GNUNET_EXTRA_LOGGING 28#define DEBUG GNUNET_NO
29 29
30#define VERBOSE GNUNET_NO 30#define VERBOSE GNUNET_NO
31 31
diff --git a/src/util/disk.c b/src/util/disk.c
index ae3ac4c41..cebf6d033 100644
--- a/src/util/disk.c
+++ b/src/util/disk.c
@@ -171,13 +171,13 @@ getSizeRec (void *cls, const char *fn)
171#ifdef HAVE_STAT64 171#ifdef HAVE_STAT64
172 if (0 != STAT64 (fn, &buf)) 172 if (0 != STAT64 (fn, &buf))
173 { 173 {
174 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "stat64", fn); 174 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_DEBUG, "stat64", fn);
175 return GNUNET_SYSERR; 175 return GNUNET_SYSERR;
176 } 176 }
177#else 177#else
178 if (0 != STAT (fn, &buf)) 178 if (0 != STAT (fn, &buf))
179 { 179 {
180 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "stat", fn); 180 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_DEBUG, "stat", fn);
181 return GNUNET_SYSERR; 181 return GNUNET_SYSERR;
182 } 182 }
183#endif 183#endif
diff --git a/src/util/network.c b/src/util/network.c
index 217cebc77..d398d6f11 100644
--- a/src/util/network.c
+++ b/src/util/network.c
@@ -1516,10 +1516,8 @@ GNUNET_NETWORK_socket_select (struct GNUNET_NETWORK_FDSet *rfds,
1516 } 1516 }
1517 } 1517 }
1518 } 1518 }
1519#if DEBUG_NETWORK
1520 if (!nhandles || (returnedpos >= nhandles)) 1519 if (!nhandles || (returnedpos >= nhandles))
1521 LOG (GNUNET_ERROR_TYPE_DEBUG, "Returning from _select() with nothing!\n"); 1520 LOG (GNUNET_ERROR_TYPE_DEBUG, "Returning from _select() with nothing!\n");
1522#endif
1523 if (rfds) 1521 if (rfds)
1524 { 1522 {
1525 struct GNUNET_CONTAINER_SList_Iterator t; 1523 struct GNUNET_CONTAINER_SList_Iterator t;