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 | fb986ce8ae04f89275b204a40186fccdc8f13869 (patch) | |
tree | 1ce8d62b9fb8cc5189aa7e9fcc3cd01c434f0b93 | |
parent | c0c95a271afffd4e9748d618495d45bee413222f (diff) | |
download | samba-fb986ce8ae04f89275b204a40186fccdc8f13869.tar.gz samba-fb986ce8ae04f89275b204a40186fccdc8f13869.tar.bz2 samba-fb986ce8ae04f89275b204a40186fccdc8f13869.zip |
Comment that deleteprinterdataex isn't supported by a samba server.
(This used to be commit c07d583327fa194547d1bd41fdb12b25f24e88f7)
-rw-r--r-- | source3/python/py_spoolss_printerdata.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/python/py_spoolss_printerdata.c b/source3/python/py_spoolss_printerdata.c index c22eaa2239..0252b0e3ab 100644 --- a/source3/python/py_spoolss_printerdata.c +++ b/source3/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; } |