aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2013-02-05 19:25:26 +0000
committergrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2013-02-05 19:25:26 +0000
commit07d987e86263550652b4b7d53df267faafd7b912 (patch)
treea04c927be036fb1b56f5a2bb1870212146a60ea0
parentc5fb5e707f193eecb4462578343df714a259833c (diff)
-do not fail hard on log skip checks
git-svn-id: https://gnunet.org/svn/gnunet@26031 140774ce-b5e7-0310-ab8b-a85725594a96
-rw-r--r--src/util/Makefile.am2
-rw-r--r--src/util/common_logging.c2
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
{