From c9f2bc5f76b5de8057cd5bdc7fc5321e3ae16abe Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 5 Feb 2013 19:25:26 +0000 Subject: [PATCH] -do not fail hard on log skip checks --- src/util/Makefile.am | 2 +- src/util/common_logging.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/Makefile.am b/src/util/Makefile.am index e9bb41555..425cc8cca 100644 --- a/src/util/Makefile.am +++ b/src/util/Makefile.am @@ -119,7 +119,7 @@ libgnunetutil_la_LIBADD = \ libgnunetutil_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) \ - -version-info 10:0:1 + -version-info 11:0:2 libexec_PROGRAMS = \ diff --git a/src/util/common_logging.c b/src/util/common_logging.c index 23749dd99..000c33880 100644 --- a/src/util/common_logging.c +++ b/src/util/common_logging.c @@ -842,7 +842,7 @@ GNUNET_log_skip (int n, int check_reset) ok = (0 == skip_log); skip_log = 0; if (check_reset) - GNUNET_assert (ok); + GNUNET_break (ok); } else { -- 2.25.1