pysmbd: reformat py_smbd_mkdir() kwnames
authorRalph Boehme <slow@samba.org>
Tue, 17 Dec 2019 13:57:20 +0000 (14:57 +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 2bbd7c0631cc1ee0eb867d783d394abc203a2fce..f11b11bac94e577d0ec615b8ce56a611d564d35c 100644 (file)
@@ -877,7 +877,11 @@ static PyObject *py_smbd_get_sys_acl(PyObject *self, PyObject *args, PyObject *k
 
 static PyObject *py_smbd_mkdir(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;