*/
static PyObject *py_smbd_get_sys_acl(PyObject *self, PyObject *args, PyObject *kwargs)
{
- const char * const kwnames[] = { "fname", "acl_type", "service", NULL };
+ const char * const kwnames[] = {
+ "fname",
+ "acl_type",
+ "service",
+ NULL
+ };
char *fname;
PyObject *py_acl;
struct smb_acl_t *acl;
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "si|z",
discard_const_p(char *, kwnames),
- &fname, &acl_type, &service)) {
+ &fname,
+ &acl_type,
+ &service)) {
TALLOC_FREE(frame);
return NULL;
}