URL: https://github.com/SSSD/sssd/pull/5622
Author: DeepakDas7
 Title: #5622: SSSD Log: no_such_file_or_directory_modification
Action: opened

PR body:
"""
Replacing no such file or directory error code with alternate message

Resolves: https://github.com/SSSD/sssd/issues/5614
"""

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/5622/head:pr5622
git checkout pr5622
From 265dc7470c4531b72b6a5a57bb64ef06f8447770 Mon Sep 17 00:00:00 2001
From: Deepak Das <d...@redhat.com>
Date: Thu, 6 May 2021 00:08:43 +0530
Subject: [PATCH] SSSD Log: no_such_file_or_directory_modification

Replacing no such file or directory error code with alternate message

Resolves: https://github.com/SSSD/sssd/issues/5614
---
 src/providers/data_provider_fo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/providers/data_provider_fo.c b/src/providers/data_provider_fo.c
index 639548a3db..addbc6758d 100644
--- a/src/providers/data_provider_fo.c
+++ b/src/providers/data_provider_fo.c
@@ -642,7 +642,7 @@ errno_t be_resolve_server_process(struct tevent_req *subreq,
     } else if (state->svc->first_resolved == state->srv) {
         DEBUG(SSSDBG_OP_FAILURE,
               "The fail over cycled through all available servers\n");
-        return ENOENT;
+        return ENONET;
     }
 
     if (fo_get_server_name(state->srv)) {
_______________________________________________
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure

Reply via email to