tor-alpha: remove obsolete package
[openwrt/svn-archive/packages.git] / net / pptpd / patches / 001-bad_pqueue_debug.patch
1 --- a/pqueue.c
2 +++ b/pqueue.c
3 @@ -7,13 +7,11 @@
4 #include "pqueue.h"
5
6 #ifdef DEBUG_PQUEUE
7 -#define DEBUG_ON 1
8 +#define DEBUG_CMD(_a) { _a }
9 #else
10 -#define DEBUG_ON 0
11 +#define DEBUG_CMD(_a)
12 #endif
13
14 -#define DEBUG_CMD(_a) if (DEBUG_ON) { _a }
15 -
16 #define MIN_CAPACITY 128 /* min allocated buffer for a packet */
17
18 static int pqueue_alloc (int seq, unsigned char *packet, int packlen, pqueue_t **new);