diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-02-05 19:25:26 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-02-05 19:25:26 +0000 |
commit | c9f2bc5f76b5de8057cd5bdc7fc5321e3ae16abe (patch) | |
tree | a04c927be036fb1b56f5a2bb1870212146a60ea0 /src | |
parent | 5cf2dfd1632622fbbc95f0a89dee6a9a4571d979 (diff) |
-do not fail hard on log skip checks
Diffstat (limited to 'src')
-rw-r--r-- | src/util/Makefile.am | 2 | ||||
-rw-r--r-- | 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 e9bb415558..425cc8ccab 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 23749dd99f..000c338805 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 { |