samba36: adjust the debug level of asserts to save some more space
authorFelix Fietkau <nbd@openwrt.org>
Mon, 13 Feb 2012 21:30:23 +0000 (21:30 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 13 Feb 2012 21:30:23 +0000 (21:30 +0000)
SVN-Revision: 30512

net/samba36/patches/300-assert_debug_level.patch [new file with mode: 0644]

diff --git a/net/samba36/patches/300-assert_debug_level.patch b/net/samba36/patches/300-assert_debug_level.patch
new file mode 100644 (file)
index 0000000..c5b0716
--- /dev/null
@@ -0,0 +1,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