From: Ralph Boehme Date: Tue, 17 Dec 2019 13:21:03 +0000 (+0100) Subject: pysmbd: reformat py_smbd_get_nt_acl() kwnames X-Git-Tag: ldb-2.1.0~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33f33dc08e3ece38cf20924c0513f0857f8eb6d8;p=thirdparty%2Fsamba.git pysmbd: reformat py_smbd_get_nt_acl() 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 1179b5db0ed..d030ce30ddd 100644 --- a/source3/smbd/pysmbd.c +++ b/source3/smbd/pysmbd.c @@ -700,11 +700,13 @@ static PyObject *py_smbd_set_nt_acl(PyObject *self, PyObject *args, PyObject *kw */ static PyObject *py_smbd_get_nt_acl(PyObject *self, PyObject *args, PyObject *kwargs) { - const char * const kwnames[] = { "fname", - "security_info_wanted", - "service", - "session_info", - NULL }; + const char * const kwnames[] = { + "fname", + "security_info_wanted", + "service", + "session_info", + NULL + }; char *fname, *service = NULL; int security_info_wanted; PyObject *py_sd;