summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-09-19 05:29:14 +0000
committerTim Potter <tpot@samba.org>2002-09-19 05:29:14 +0000
commitc7845b3c43f7167f2c695722bc9923ff666ade76 (patch)
tree9d3413441aa09b9b8ea1f13da254fb147918be04 /source
parent154c59c8f92b9f735f4e1e7c8c42692c959996f1 (diff)
downloadsamba-c7845b3c43f7167f2c695722bc9923ff666ade76.tar.gz
samba-c7845b3c43f7167f2c695722bc9923ff666ade76.tar.xz
samba-c7845b3c43f7167f2c695722bc9923ff666ade76.zip
Fixed bug in keyword args for enumprinterdataex
Diffstat (limited to 'source')
-rw-r--r--source/python/py_spoolss_printerdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/python/py_spoolss_printerdata.c b/source/python/py_spoolss_printerdata.c
index ffff2b3a67a..bacc870d9dd 100644
--- a/source/python/py_spoolss_printerdata.c
+++ b/source/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;