From 0be0bc1151ac8e7bb6d8c074ab89dc2b77ec3541 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 13 Mar 2006 17:26:52 +0000 Subject: r14329: Fix the build on systems without libcom_err. Guenther (This used to be commit 44fcd3113be970edd01f7f076c4b6cad2d03ebcd) --- source3/nsswitch/winbindd_dual.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/nsswitch/winbindd_dual.c b/source3/nsswitch/winbindd_dual.c index b77f499799..d1ad3330d4 100644 --- a/source3/nsswitch/winbindd_dual.c +++ b/source3/nsswitch/winbindd_dual.c @@ -576,13 +576,13 @@ static void child_msg_online(int msg_type, struct process_id src, void *buf, siz ret = nscd_flush_cache("passwd"); if (ret) { DEBUG(5,("failed to flush nscd cache for 'passwd' service: %s\n", - error_message(ret))); + strerror(ret))); } ret = nscd_flush_cache("group"); if (ret) { DEBUG(5,("failed to flush nscd cache for 'group' service: %s\n", - error_message(ret))); + strerror(ret))); } #endif -- cgit