summaryrefslogtreecommitdiff
path: root/source3/python/py_spoolss_printerdata.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-05-15 06:05:00 +0000
committerTim Potter <tpot@samba.org>2002-05-15 06:05:00 +0000
commitfb986ce8ae04f89275b204a40186fccdc8f13869 (patch)
tree1ce8d62b9fb8cc5189aa7e9fcc3cd01c434f0b93 /source3/python/py_spoolss_printerdata.c
parentc0c95a271afffd4e9748d618495d45bee413222f (diff)
downloadsamba-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)
Diffstat (limited to 'source3/python/py_spoolss_printerdata.c')
-rw-r--r--source3/python/py_spoolss_printerdata.c4
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;
}