aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/samba36/patches/300-assert_debug_level.patch
blob: c5b07168c67f91e5cb746eca8cadb8f3275e9f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/lib/util/util.h
+++ b/lib/util/util.h
@@ -53,7 +53,7 @@ extern const char *panic_action;
 #else
 /* redefine the assert macro for non-developer builds */
 #define SMB_ASSERT(b) do { if (!(b)) { \
-        DEBUG(0,("PANIC: assert failed at %s(%d): %s\n", \
+        DEBUG(3,("PANIC: assert failed at %s(%d): %s\n", \
 	    __FILE__, __LINE__, #b)); }} while (0)
 #endif