pysmbd: reformat py_smbd_create_file() kwnames
authorRalph Boehme <slow@samba.org>
Tue, 17 Dec 2019 13:58:32 +0000 (14:58 +0100)
committerRalph Boehme <slow@samba.org>
Fri, 20 Dec 2019 11:41:42 +0000 (11:41 +0000)
No change in behaviour.

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
source3/smbd/pysmbd.c

index f11b11bac94e577d0ec615b8ce56a611d564d35c..5bb35fcfd91888601a9e459da6ace2d7db31aec1 100644 (file)
@@ -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;