We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c52c30 commit 86d58bfCopy full SHA for 86d58bf
mod_winbind.c
@@ -313,7 +313,7 @@ handle_winbind_uid_name(cmd_rec *cmd)
313
314
ret = wbcGetpwuid(*((uid_t *) cmd->argv[0]), &pw);
315
if (!WBC_ERROR_IS_OK(ret)) {
316
- if (ret != WBC_ERR_UNKNOWN_USER) {
+ if ((ret != WBC_ERR_UNKNOWN_USER) && (ret != WBC_ERR_DOMAIN_NOT_FOUND)) {
317
pr_log_pri(PR_LOG_ERR,
318
MOD_WINBIND_VERSION ": unable to look up user with UID %u: %s",
319
*((unsigned *) cmd->argv[0]), wbcErrorString(ret));
0 commit comments