mirror of
https://github.com/samba-team/samba.git
synced 2025-12-07 20:23:50 +03:00
Start to make argument ordering consistent.
This commit is contained in:
@@ -242,14 +242,15 @@ PyObject *spoolss_getprinterdriverdir(PyObject *self, PyObject *args,
|
||||
DRIVER_DIRECTORY_CTR ctr;
|
||||
uint32 needed, level;
|
||||
char *arch = "Windows NT x86", *server_name;
|
||||
static char *kwlist[] = {"server", "creds", NULL};
|
||||
static char *kwlist[] = {"server", "level", "arch", "creds", NULL};
|
||||
struct cli_state *cli = NULL;
|
||||
TALLOC_CTX *mem_ctx = NULL;
|
||||
|
||||
/* Parse parameters */
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kw, "s|is", kwlist,
|
||||
&server_name, &level, &arch))
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kw, "s|isO!", kwlist,
|
||||
&server_name, &level, &arch,
|
||||
&PyDict_Type, &creds))
|
||||
return NULL;
|
||||
|
||||
/* Call rpc function */
|
||||
|
||||
Reference in New Issue
Block a user