From c15c667afbc221944745ce2a14f138bcb0e9e1ed Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 3 Apr 2002 04:47:44 +0000 Subject: Start to make argument ordering consistent. (This used to be commit e84cc7ea84042b2460baef32a39448d620612bbc) --- source3/python/py_spoolss_drivers.c | 7 ++++--- source3/python/py_spoolss_ports.c | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) (limited to 'source3/python') diff --git a/source3/python/py_spoolss_drivers.c b/source3/python/py_spoolss_drivers.c index 014167db27..b19d93b4c1 100644 --- a/source3/python/py_spoolss_drivers.c +++ b/source3/python/py_spoolss_drivers.c @@ -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 */ diff --git a/source3/python/py_spoolss_ports.c b/source3/python/py_spoolss_ports.c index a7d55a7897..d224408476 100644 --- a/source3/python/py_spoolss_ports.c +++ b/source3/python/py_spoolss_ports.c @@ -51,8 +51,8 @@ PyObject *spoolss_enumports(PyObject *self, PyObject *args, PyObject *kw) /* Parse parameters */ if (!PyArg_ParseTupleAndKeywords(args, kw, "s|iO!", kwlist, - &server, &level, &PyDict_Type, - &creds)) + &server, &creds, &level, + &PyDict_Type)) return NULL; if (server[0] == '\\' && server[1] == '\\') -- cgit