From a60935478be3af29b57c28f8848914661f6cc042 Mon Sep 17 00:00:00 2001
From: Sean Bright <sean@malleable.com>
Date: Fri, 15 Jan 2010 22:07:31 +0000
Subject: [PATCH] Clarify error message in res_timing_timerfd.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@240505 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 res/res_timing_timerfd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/res/res_timing_timerfd.c b/res/res_timing_timerfd.c
index a62453e4d7..12bb493dc1 100644
--- a/res/res_timing_timerfd.c
+++ b/res/res_timing_timerfd.c
@@ -266,7 +266,7 @@ static int load_module(void)
 
 	/* Make sure we support the necessary clock type */
 	if ((fd = timerfd_create(CLOCK_MONOTONIC, 0)) < 0) {
-		ast_log(LOG_ERROR, "CLOCK_MONOTONIC not supported.  Not loading.\n");
+		ast_log(LOG_ERROR, "timerfd_create() not supported by the kernel.  Not loading.\n");
 		return AST_MODULE_LOAD_DECLINE;
 	}
 
-- 
GitLab