From: Ralph Boehme Date: Tue, 17 Dec 2019 13:58:32 +0000 (+0100) Subject: pysmbd: reformat py_smbd_create_file() kwnames X-Git-Tag: ldb-2.1.0~167 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=927c87d253c42282e8f62038363399f7643fcc76;p=thirdparty%2Fsamba.git pysmbd: reformat py_smbd_create_file() kwnames No change in behaviour. Signed-off-by: Ralph Boehme Reviewed-by: Stefan Metzmacher --- diff --git a/source3/smbd/pysmbd.c b/source3/smbd/pysmbd.c index f11b11bac94..5bb35fcfd91 100644 --- a/source3/smbd/pysmbd.c +++ b/source3/smbd/pysmbd.c @@ -945,7 +945,11 @@ static PyObject *py_smbd_mkdir(PyObject *self, PyObject *args, PyObject *kwargs) */ static PyObject *py_smbd_create_file(PyObject *self, PyObject *args, PyObject *kwargs) { - const char * const kwnames[] = { "fname", "service", NULL }; + const char * const kwnames[] = { + "fname", + "service", + NULL + }; char *fname, *service = NULL; TALLOC_CTX *frame = talloc_stackframe(); struct connection_struct *conn = NULL;