Module Name: src
Committed By: christos
Date: Thu Mar 2 15:43:14 UTC 2017
Modified Files:
src/external/bsd/libevent/dist: evthread.c
Log Message:
remove debugging abort that makes tests fail.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/libevent/dist/evthread.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/libevent/dist/evthread.c
diff -u src/external/bsd/libevent/dist/evthread.c:1.1.1.2 src/external/bsd/libevent/dist/evthread.c:1.2
--- src/external/bsd/libevent/dist/evthread.c:1.1.1.2 Tue Jan 31 16:14:52 2017
+++ src/external/bsd/libevent/dist/evthread.c Thu Mar 2 10:43:14 2017
@@ -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 @@ evthread_set_lock_callbacks(const struct
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 @@ evthread_set_condition_callbacks(const s
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;