summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-07-11 23:08:51 +0000
committerTim Potter <tpot@samba.org>2002-07-11 23:08:51 +0000
commitef5c9698b06c5df99ec07ee781cc54d2e348ba8a (patch)
tree498f44e6f8cb5937c0c7de4d2980cb344e58e734 /source
parent802f30a1b34888823c1fc80121b3917cb6825119 (diff)
downloadsamba-ef5c9698b06c5df99ec07ee781cc54d2e348ba8a.tar.gz
samba-ef5c9698b06c5df99ec07ee781cc54d2e348ba8a.tar.xz
samba-ef5c9698b06c5df99ec07ee781cc54d2e348ba8a.zip
Another compile fix.
Diffstat (limited to 'source')
-rw-r--r--source/python/py_spoolss_printers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/python/py_spoolss_printers.c b/source/python/py_spoolss_printers.c
index 4294df5a6d4..8d4cd24778c 100644
--- a/source/python/py_spoolss_printers.c
+++ b/source/python/py_spoolss_printers.c
@@ -337,12 +337,12 @@ PyObject *spoolss_enumprinters(PyObject *self, PyObject *args, PyObject *kw)
/* Call rpc function */
werror = cli_spoolss_enum_printers(
- cli, mem_ctx, 0, &needed, name, flags, level,
+ cli, mem_ctx, 0, &needed, flags, level,
&num_printers, &ctr);
if (W_ERROR_V(werror) == ERRinsufficientbuffer)
werror = cli_spoolss_enum_printers(
- cli, mem_ctx, needed, NULL, name, flags, level,
+ cli, mem_ctx, needed, NULL, flags, level,
&num_printers, &ctr);
if (!W_ERROR_IS_OK(werror)) {