diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-03-01 14:30:54 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-03-01 12:01:26 -0800 |
commit | 23640472bc6592a8bf03cccc7134b1c71b64a55a (patch) | |
tree | b3fd6cdaad73b2a4fb6643d0e8a3d79a9e1215c4 | |
parent | 4fcc94d852fcc19c304be50edc07914ea2f8d0c8 (diff) | |
download | samba-23640472bc6592a8bf03cccc7134b1c71b64a55a.tar.gz samba-23640472bc6592a8bf03cccc7134b1c71b64a55a.tar.bz2 samba-23640472bc6592a8bf03cccc7134b1c71b64a55a.zip |
tevent: use DEBUG_ERROR for the fallback message in epoll_panic()
A Samba autobuild passed without a fallback, so this is
really an error.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | lib/tevent/tevent_epoll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/tevent_epoll.c b/lib/tevent/tevent_epoll.c index 3a3c01c867..1ec97c5f71 100644 --- a/lib/tevent/tevent_epoll.c +++ b/lib/tevent/tevent_epoll.c @@ -163,7 +163,7 @@ static void epoll_panic(struct epoll_event_context *epoll_ev, abort(); } - tevent_debug(ev, TEVENT_DEBUG_WARNING, + tevent_debug(ev, TEVENT_DEBUG_ERROR, "%s (%s) replay[%u] - calling panic_fallback\n", reason, strerror(errno), (unsigned)replay); |