Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/libevent/dist remove debugging abort that makes...



details:   https://anonhg.NetBSD.org/src/rev/0d543b833889
branches:  trunk
changeset: 822126:0d543b833889
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Mar 02 15:43:14 2017 +0000

description:
remove debugging abort that makes tests fail.

diffstat:

 external/bsd/libevent/dist/evthread.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 19f6dca1454c -r 0d543b833889 external/bsd/libevent/dist/evthread.c
--- a/external/bsd/libevent/dist/evthread.c     Thu Mar 02 14:25:41 2017 +0000
+++ b/external/bsd/libevent/dist/evthread.c     Thu Mar 02 15:43:14 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: evthread.c,v 1.1.1.2 2017/01/31 21:14:52 christos Exp $        */
+/*     $NetBSD: evthread.c,v 1.2 2017/03/02 15:43:14 christos Exp $    */
 /*
  * Copyright (c) 2008-2012 Niels Provos, Nick Mathewson
  *
@@ -27,7 +27,7 @@
 
 #include "event2/event-config.h"
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: evthread.c,v 1.1.1.2 2017/01/31 21:14:52 christos Exp $");
+__RCSID("$NetBSD: evthread.c,v 1.2 2017/03/02 15:43:14 christos Exp $");
 #include "evconfig-private.h"
 
 #ifndef EVENT__DISABLE_THREAD_SUPPORT
@@ -108,7 +108,7 @@
        if (!cbs) {
                if (target->alloc)
                        event_warnx("Trying to disable lock functions after "
-                           "they have been set up will probaby not work.");
+                           "they have been set up will probably not work.");
                memset(target, 0, sizeof(evthread_lock_fns_));
                return 0;
        }
@@ -151,7 +151,7 @@
        if (!cbs) {
                if (target->alloc_condition)
                        event_warnx("Trying to disable condition functions "
-                           "after they have been set up will probaby not "
+                           "after they have been set up will probably not "
                            "work.");
                memset(target, 0, sizeof(evthread_cond_fns_));
                return 0;



Home | Main Index | Thread Index | Old Index