1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

Fixed bug in keyword args for enumprinterdataex

This commit is contained in:
Tim Potter
-
parent 154c59c8f9
commit c7845b3c43

View File

@ -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;