From: Jo Sutton Date: Tue, 9 Apr 2024 02:31:11 +0000 (+1200) Subject: auth:credentials: Remove unnecessary declaration X-Git-Tag: tdb-1.4.11~1056 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=faba757175fdd56c6a489f76becde7e5f71694e3;p=thirdparty%2Fsamba.git auth:credentials: Remove unnecessary declaration This declaration is a hold‐over from the Python 2 module initialization pattern. Signed-off-by: Jo Sutton Reviewed-by: Andrew Bartlett --- diff --git a/auth/credentials/pycredentials.c b/auth/credentials/pycredentials.c index 5cdbe7796e6..0bcb894f920 100644 --- a/auth/credentials/pycredentials.c +++ b/auth/credentials/pycredentials.c @@ -35,8 +35,6 @@ #include "auth/kerberos/kerberos.h" #include "libcli/smb/smb_constants.h" -void initcredentials(void); - static PyObject *py_creds_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) { return pytalloc_steal(type, cli_credentials_init(NULL));