diff options
author | Tim Potter <tpot@samba.org> | 2002-05-15 06:05:00 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-05-15 06:05:00 +0000 |
commit | c07d583327fa194547d1bd41fdb12b25f24e88f7 (patch) | |
tree | 684b11a11c33a990fefcef282f1118f846df5da4 | |
parent | e3c27d7d1093743124cad573e781547a9a2f659f (diff) | |
download | samba-c07d583327fa194547d1bd41fdb12b25f24e88f7.tar.gz samba-c07d583327fa194547d1bd41fdb12b25f24e88f7.tar.xz samba-c07d583327fa194547d1bd41fdb12b25f24e88f7.zip |
Comment that deleteprinterdataex isn't supported by a samba server.
-rw-r--r-- | source/python/py_spoolss_printerdata.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/python/py_spoolss_printerdata.c b/source/python/py_spoolss_printerdata.c index c22eaa22397..0252b0e3ab9 100644 --- a/source/python/py_spoolss_printerdata.c +++ b/source/python/py_spoolss_printerdata.c @@ -227,4 +227,8 @@ PyObject *spoolss_deleteprinterdata(PyObject *self, PyObject *args, PyObject *kw PyObject *spoolss_deleteprinterdataex(PyObject *self, PyObject *args, PyObject *kw) { + /* Not supported by Samba server */ + + PyErr_SetString(spoolss_error, "Not implemented"); + return NULL; } |