dropbear: disable assertions to reduce code size
[openwrt.git] / package / dropbear / patches / 140-disable_assert.patch
1 --- a/dbutil.h
2 +++ b/dbutil.h
3 @@ -94,6 +94,10 @@
4 #define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
5
6 /* Dropbear assertion */
7 -#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
8 +#ifndef DROPBEAR_ASSERT_ENABLED
9 +#define DROPBEAR_ASSERT_ENABLED 0
10 +#endif
11 +
12 +#define dropbear_assert(X) do { if (DROPBEAR_ASSERT_ENABLED && !(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
13
14 #endif /* _DBUTIL_H_ */
This page took 0.047825 seconds and 5 git commands to generate.