summaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorPavel Filipenský <pfilipen@redhat.com>2022-05-11 12:11:21 +0200
committerJeremy Allison <jra@samba.org>2022-05-14 03:49:32 +0000
commit3960af99e58f3f107f874489b3ab1294eb285cd6 (patch)
tree8ac2409b4bced39614f48b64e30af33442d6bce8 /auth
parentccda9c162c841a86e88999dc366a6c862b1cb4ac (diff)
downloadsamba-3960af99e58f3f107f874489b3ab1294eb285cd6.tar.gz
auth: Covscan: unchecked return value for cli_credentials_set_smb_encryption()
Signed-off-by: Pavel Filipenský <pfilipen@redhat.com> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'auth')
-rw-r--r--auth/credentials/pycredentials.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/credentials/pycredentials.c b/auth/credentials/pycredentials.c
index 94fd13420b1..b779f274b89 100644
--- a/auth/credentials/pycredentials.c
+++ b/auth/credentials/pycredentials.c
@@ -1136,7 +1136,7 @@ static PyObject *py_creds_set_smb_encryption(PyObject *self, PyObject *args)
return NULL;
}
- cli_credentials_set_smb_encryption(creds, encryption_state, obt);
+ (void)cli_credentials_set_smb_encryption(creds, encryption_state, obt);
Py_RETURN_NONE;
}