From faba757175fdd56c6a489f76becde7e5f71694e3 Mon Sep 17 00:00:00 2001 From: Jo Sutton Date: Tue, 9 Apr 2024 14:31:11 +1200 Subject: [PATCH] auth:credentials: Remove unnecessary declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This declaration is a holdā€over from the Python 2 module initialization pattern. Signed-off-by: Jo Sutton Reviewed-by: Andrew Bartlett --- auth/credentials/pycredentials.c | 2 -- 1 file changed, 2 deletions(-) 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));