summaryrefslogtreecommitdiffstats
path: root/source/python
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-08-25 21:16:17 +0000
committerGerald Carter <jerry@samba.org>2003-08-25 21:16:17 +0000
commit331a69919c3d4457e4c700b1fd4033f338d0ec98 (patch)
tree52a4042cec3371f7a2de51b9cc83c14232042ebc /source/python
parentd9d50b6cfe6525ccd0173394fd17e545440ecfa8 (diff)
downloadsamba-331a69919c3d4457e4c700b1fd4033f338d0ec98.tar.gz
samba-331a69919c3d4457e4c700b1fd4033f338d0ec98.tar.xz
samba-331a69919c3d4457e4c700b1fd4033f338d0ec98.zip
update python libraries for new cli_spoolss_getprinterdriver() call
Diffstat (limited to 'source/python')
-rw-r--r--source/python/py_spoolss_drivers.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/python/py_spoolss_drivers.c b/source/python/py_spoolss_drivers.c
index a072ac0d5c0..12190519ecc 100644
--- a/source/python/py_spoolss_drivers.c
+++ b/source/python/py_spoolss_drivers.c
@@ -177,6 +177,7 @@ PyObject *spoolss_hnd_getprinterdriver(PyObject *self, PyObject *args,
int level = 1;
uint32 needed;
char *arch = "Windows NT x86";
+ int version = 2;
static char *kwlist[] = {"level", "arch", NULL};
/* Parse parameters */
@@ -189,12 +190,12 @@ PyObject *spoolss_hnd_getprinterdriver(PyObject *self, PyObject *args,
werror = cli_spoolss_getprinterdriver(
hnd->cli, hnd->mem_ctx, 0, &needed, &hnd->pol, level,
- arch, &ctr);
+ version, arch, &ctr);
if (W_ERROR_V(werror) == ERRinsufficientbuffer)
werror = cli_spoolss_getprinterdriver(
hnd->cli, hnd->mem_ctx, needed, NULL, &hnd->pol,
- level, arch, &ctr);
+ level, version, arch, &ctr);
if (!W_ERROR_IS_OK(werror)) {
PyErr_SetObject(spoolss_werror, py_werror_tuple(werror));