1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-19 04:23:48 +03:00

Start to make argument ordering consistent.

This commit is contained in:
Tim Potter
-
parent f05c3c6fc5
commit e84cc7ea84
2 changed files with 6 additions and 5 deletions

View File

@@ -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] == '\\')