1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

s3:pylibsmb: remove compiler warnings

Signed-off-by: Stefan Metzmacher <metze@samba.org>

Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher 2013-08-09 10:15:48 +02:00 committed by Andrew Bartlett
parent 82e969b3c7
commit a560d1d485

View File

@ -51,19 +51,20 @@ static PyTypeObject *get_pytype(const char *module, const char *type)
}
/*
* We're using "const char **" for keywords,
* We're using "const char * const *" for keywords,
* PyArg_ParseTupleAndKeywords expects a "char **". Confine the
* inevitable warnings to just one place.
*/
static int ParseTupleAndKeywords(PyObject *args, PyObject *kw,
const char *format, const char **keywords,
const char *format, const char * const *keywords,
...)
{
char **_keywords = discard_const_p(char *, keywords);
va_list a;
int ret;
va_start(a, keywords);
ret = PyArg_VaParseTupleAndKeywords(args, kw, format,
(char **)keywords, a);
_keywords, a);
va_end(a);
return ret;
}
@ -448,7 +449,7 @@ static int py_cli_state_init(struct py_cli_state *self, PyObject *args,
cli_credentials_get_password(cli_creds),
0, 0);
if (!py_tevent_req_wait_exc(self->ev, req)) {
return NULL;
return -1;
}
status = cli_full_connection_recv(req, &self->cli);
TALLOC_FREE(req);