summaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2021-03-23 16:27:38 +0100
committerGünther Deschner <gd@samba.org>2021-03-24 00:55:32 +0000
commitca57356b78f095c20685c4b510d20b1efedb5882 (patch)
tree304d1f83c638da220a7aa73b7711575843f98ddc /auth
parent3f3093933a2341da5329647b843ef8f06fc9e30b (diff)
downloadsamba-ca57356b78f095c20685c4b510d20b1efedb5882.tar.gz
s4:lib:cmdline: Rename cli_credentials_set_cmdline_callbacks()
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
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 95dde276ef7..250a16018e3 100644
--- a/auth/credentials/pycredentials.c
+++ b/auth/credentials/pycredentials.c
@@ -474,7 +474,7 @@ static PyObject *py_creds_set_cmdline_callbacks(PyObject *self, PyObject *unused
PyErr_Format(PyExc_TypeError, "Credentials expected");
return NULL;
}
- return PyBool_FromLong(cli_credentials_set_cmdline_callbacks(creds));
+ return PyBool_FromLong(s4_cli_credentials_set_cmdline_callbacks(creds));
}
static PyObject *py_creds_parse_string(PyObject *self, PyObject *args)