Commit a0a19f87 authored by Geoff Simmons's avatar Geoff Simmons

The NODEBUG macro also suppresses printf() while interpreting ESIDATA.

parent bcd19fd5
......@@ -1057,9 +1057,12 @@ vped_include(struct req *preq, const char *src, const char *host,
/*--------------------------------------------------------------------*/
#ifndef NODEBUG
#include <stdio.h>
#define Debug(fmt, ...) printf(fmt, __VA_ARGS__)
//#define Debug(fmt, ...) /**/
#else
#define Debug(fmt, ...) /**/
#endif
static ssize_t
ved_decode_len(struct req *req, const uint8_t **pp)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment