remove lingering debug stuff, add my name to file headers

This commit is contained in:
Paul Chambers 2019-10-02 13:08:22 -07:00
parent dcad93615f
commit fda82bceef
4 changed files with 7 additions and 4 deletions

View File

@ -3,6 +3,7 @@
* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
* (c) 2015 Tomofumi Hayashi
* (c) 2019 Paul Chambers
*
* This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution.

View File

@ -2,6 +2,7 @@
* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
* (c) 2015 Tomofumi Hayashi
* (c) 2019 Paul Chambers
*
* This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution.

View File

@ -4,6 +4,7 @@
* http://miniupnp.free.fr/ or https://miniupnp.tuxfamily.org/
* (c) 2015 Tomofumi Hayashi
* (c) 2019 Thomas Bernard
* (c) 2019 Paul Chambers
*
* This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution.
@ -41,7 +42,6 @@
#include "nftnlrdr_misc.h"
#include "../macros.h"
#define DEBUG 1
#ifdef DEBUG
#define d_printf(x) do { printf x; } while (0)
@ -1308,7 +1308,7 @@ table_op( enum nf_tables_msg_types op, uint16_t family, const char * name)
struct nftnl_table *table;
log_error("(%d, %d, %s)", op, family, name);
// log_debug("(%d, %d, %s)", op, family, name);
table = nftnl_table_alloc();
if (table == NULL) {
@ -1347,7 +1347,7 @@ chain_op(enum nf_tables_msg_types op, uint16_t family, const char * table,
struct nftnl_chain *chain;
log_error("(%d, %d, %s, %s, %s, %d, %d)", op, family, table, name, type, hooknum, priority);
// log_debug("(%d, %d, %s, %s, %s, %d, %d)", op, family, table, name, type, hooknum, priority);
chain = nftnl_chain_alloc();
if (chain == NULL) {

View File

@ -2,7 +2,8 @@
* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
* (c) 2015 Tomofumi Hayashi
*
* (c) 2019 Paul Chambers
*
* This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution.
*/