diff mbox series

[4/4] acl_nfs4_get_who: removed an always false evaluate warning

Message ID 20220616202902.53969-4-steved@redhat.com (mailing list archive)
State New, archived
Headers show
Series [1/4] Makefile: Added the creation of config.guess and config.sub | expand

Commit Message

Steve Dickson June 16, 2022, 8:29 p.m. UTC
Signed-off-by: Steve Dickson <steved@redhat.com>
---
 libnfs4acl/acl_nfs4_get_who.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libnfs4acl/acl_nfs4_get_who.c b/libnfs4acl/acl_nfs4_get_who.c
index 695db2e..3e2fd7c 100644
--- a/libnfs4acl/acl_nfs4_get_who.c
+++ b/libnfs4acl/acl_nfs4_get_who.c
@@ -49,7 +49,7 @@  int acl_nfs4_get_who(struct nfs4_ace* ace, int* type, char** who)
 	char* iwho = NULL;
 	int wholen;
 
-	if (ace == NULL || ace->who == NULL)
+	if (ace == NULL)
 		goto inval_failed;
 
 	itype = acl_nfs4_get_whotype(ace->who);