diff options
author | Tim Potter <tpot@samba.org> | 2002-09-09 04:42:01 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-09-09 04:42:01 +0000 |
commit | b32f4ccf5b2cf74c98f4755856d81e217ab458ef (patch) | |
tree | 5a509e813310c8c0ccc735e054011bd2f489a2f6 /source3/python | |
parent | 317ce5fc06db976e6a7f96e2070e92b65be6349e (diff) | |
download | samba-b32f4ccf5b2cf74c98f4755856d81e217ab458ef.tar.gz samba-b32f4ccf5b2cf74c98f4755856d81e217ab458ef.tar.bz2 samba-b32f4ccf5b2cf74c98f4755856d81e217ab458ef.zip |
Pass level keyword down to cli_spoolss_getform()
(This used to be commit 69bb58b92e92113b3ce2c72a3bfa46ed3056c261)
Diffstat (limited to 'source3/python')
-rw-r--r-- | source3/python/py_spoolss_forms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/python/py_spoolss_forms.c b/source3/python/py_spoolss_forms.c index c216e00afe..ef9ed94533 100644 --- a/source3/python/py_spoolss_forms.c +++ b/source3/python/py_spoolss_forms.c @@ -102,7 +102,7 @@ PyObject *spoolss_hnd_getform(PyObject *self, PyObject *args, PyObject *kw) /* Call rpc function */ werror = cli_spoolss_getform(hnd->cli, hnd->mem_ctx, 0, &needed, - &hnd->pol, form_name, 1, &form); + &hnd->pol, form_name, level, &form); if (W_ERROR_V(werror) == ERRinsufficientbuffer) werror = cli_spoolss_getform( |