1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r14329: Fix the build on systems without libcom_err.

Guenther
(This used to be commit 44fcd3113b)
This commit is contained in:
Günther Deschner 2006-03-13 17:26:52 +00:00 committed by Gerald (Jerry) Carter
parent fe9ddcace9
commit 0be0bc1151

View File

@ -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