summaryrefslogtreecommitdiff
path: root/source3/python/py_spoolss_printers.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-05-15 06:22:53 +0000
committerTim Potter <tpot@samba.org>2002-05-15 06:22:53 +0000
commit5951e762d564de31938cf9d18dd3a8abff2b5983 (patch)
tree0f871938235461f873915319823a309879af0b14 /source3/python/py_spoolss_printers.c
parentc4d0a4c5f816bc8ac6fa258433400ae23163f4d1 (diff)
downloadsamba-5951e762d564de31938cf9d18dd3a8abff2b5983.tar.gz
samba-5951e762d564de31938cf9d18dd3a8abff2b5983.tar.bz2
samba-5951e762d564de31938cf9d18dd3a8abff2b5983.zip
Renamed functions that are methods of a printer handle object from
spoolss_* to spoolss_hnd_* to make things a bit clearer. (This used to be commit 986d868837350e9b107c147e649f139fd7d881f0)
Diffstat (limited to 'source3/python/py_spoolss_printers.c')
-rw-r--r--source3/python/py_spoolss_printers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/python/py_spoolss_printers.c b/source3/python/py_spoolss_printers.c
index 79e4d95fb8..164ba974b9 100644
--- a/source3/python/py_spoolss_printers.c
+++ b/source3/python/py_spoolss_printers.c
@@ -110,7 +110,7 @@ PyObject *spoolss_closeprinter(PyObject *self, PyObject *args)
/* Fetch printer information */
-PyObject *spoolss_getprinter(PyObject *self, PyObject *args, PyObject *kw)
+PyObject *spoolss_hnd_getprinter(PyObject *self, PyObject *args, PyObject *kw)
{
spoolss_policy_hnd_object *hnd = (spoolss_policy_hnd_object *)self;
WERROR werror;
@@ -176,7 +176,7 @@ PyObject *spoolss_getprinter(PyObject *self, PyObject *args, PyObject *kw)
/* Set printer information */
-PyObject *spoolss_setprinter(PyObject *self, PyObject *args, PyObject *kw)
+PyObject *spoolss_hnd_setprinter(PyObject *self, PyObject *args, PyObject *kw)
{
spoolss_policy_hnd_object *hnd = (spoolss_policy_hnd_object *)self;
WERROR werror;