summaryrefslogtreecommitdiffstats
path: root/source/python
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
commitc07d583327fa194547d1bd41fdb12b25f24e88f7 (patch)
tree684b11a11c33a990fefcef282f1118f846df5da4 /source/python
parente3c27d7d1093743124cad573e781547a9a2f659f (diff)
downloadsamba-c07d583327fa194547d1bd41fdb12b25f24e88f7.tar.gz
samba-c07d583327fa194547d1bd41fdb12b25f24e88f7.tar.xz
samba-c07d583327fa194547d1bd41fdb12b25f24e88f7.zip
Comment that deleteprinterdataex isn't supported by a samba server.
Diffstat (limited to 'source/python')
-rw-r--r--source/python/py_spoolss_printerdata.c4
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;
}