41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
From aede6a1f4412f133e4b3fd76944f764d76fc4868 Mon Sep 17 00:00:00 2001
|
||
From: Lukas Slebodnik <lslebodn@redhat.com>
|
||
Date: Tue, 22 Aug 2017 16:50:23 +0200
|
||
Subject: [PATCH 35/93] libwbclient: Fix warning statement with no effect
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
src/sss_client/libwbclient/wbc_pam_sssd.c: In function ‘wbcAuthenticateUserEx’:
|
||
src/sss_client/libwbclient/wbc_pam_sssd.c:52:5: error: statement with no effect [-Werror=unused-value]
|
||
WBC_ERR_WINBIND_NOT_AVAILABLE;
|
||
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
src/sss_client/libwbclient/wbc_pam_sssd.c:53:1: error: control reaches end of non-void function [-Werror=return-type]
|
||
}
|
||
^
|
||
|
||
Related to:
|
||
https://pagure.io/SSSD/sssd/issue/3461
|
||
|
||
Reviewed-by: Sumit Bose <sbose@redhat.com>
|
||
---
|
||
src/sss_client/libwbclient/wbc_pam_sssd.c | 2 +-
|
||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
||
diff --git a/src/sss_client/libwbclient/wbc_pam_sssd.c b/src/sss_client/libwbclient/wbc_pam_sssd.c
|
||
index fb269fd7ab1f6b27a9c9a9cb34381383611e76cc..77698f523e6e7aeb37d4db50b469d1604d7ee595 100644
|
||
--- a/src/sss_client/libwbclient/wbc_pam_sssd.c
|
||
+++ b/src/sss_client/libwbclient/wbc_pam_sssd.c
|
||
@@ -49,7 +49,7 @@ wbcErr wbcAuthenticateUserEx(const struct wbcAuthUserParams *params,
|
||
*error = NULL;
|
||
}
|
||
|
||
- WBC_ERR_WINBIND_NOT_AVAILABLE;
|
||
+ return WBC_ERR_WINBIND_NOT_AVAILABLE;
|
||
}
|
||
|
||
/* Trigger a verification of the trust credentials of a specific domain */
|
||
--
|
||
2.14.1
|
||
|