diff options
author | Tim Potter <tpot@samba.org> | 2002-09-19 05:29:14 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-09-19 05:29:14 +0000 |
commit | a39dcb606dff72c2b851e692224b8ec1140e093c (patch) | |
tree | d39089dc7e9c95c6141ae4d858342a3123404a72 /source3 | |
parent | d3a661453e5e16cf0bd3bdcdb9b07d9f29ae0044 (diff) | |
download | samba-a39dcb606dff72c2b851e692224b8ec1140e093c.tar.gz samba-a39dcb606dff72c2b851e692224b8ec1140e093c.tar.bz2 samba-a39dcb606dff72c2b851e692224b8ec1140e093c.zip |
Fixed bug in keyword args for enumprinterdataex
(This used to be commit c7845b3c43f7167f2c695722bc9923ff666ade76)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/python/py_spoolss_printerdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/python/py_spoolss_printerdata.c b/source3/python/py_spoolss_printerdata.c index ffff2b3a67..bacc870d9d 100644 --- a/source3/python/py_spoolss_printerdata.c +++ b/source3/python/py_spoolss_printerdata.c @@ -321,7 +321,7 @@ PyObject *spoolss_hnd_setprinterdataex(PyObject *self, PyObject *args, PyObject PyObject *spoolss_hnd_enumprinterdataex(PyObject *self, PyObject *args, PyObject *kw) { spoolss_policy_hnd_object *hnd = (spoolss_policy_hnd_object *)self; - static char *kwlist[] = { NULL }; + static char *kwlist[] = { "key", NULL }; uint32 needed, i; char *key; WERROR werror; |