diff options
author | Tim Potter <tpot@samba.org> | 2003-01-15 22:18:33 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-01-15 22:18:33 +0000 |
commit | ba41aa6863494ec67b416defe843c79febb080bb (patch) | |
tree | 48f398010165ee6a10edf28c62c19bc559852537 /source3 | |
parent | f7592a60d412f2a1854f9e38b5cc727defeed439 (diff) | |
download | samba-ba41aa6863494ec67b416defe843c79febb080bb.tar.gz samba-ba41aa6863494ec67b416defe843c79febb080bb.tar.bz2 samba-ba41aa6863494ec67b416defe843c79febb080bb.zip |
Sync up compiler warning fixes.
(This used to be commit 225182a3a36c72b10643c9568e5cc1f80c0173f1)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/python/py_spoolss_printers.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/python/py_spoolss_printers.c b/source3/python/py_spoolss_printers.c index 2076bd76cf..d011681acc 100644 --- a/source3/python/py_spoolss_printers.c +++ b/source3/python/py_spoolss_printers.c @@ -353,9 +353,9 @@ PyObject *spoolss_enumprinters(PyObject *self, PyObject *args, PyObject *kw) for (i = 0; i < num_printers; i++) { PyObject *value; - fstring name; + fstring s; - rpcstr_pull(name, ctr.printers_0[i].printername.buffer, + rpcstr_pull(s, ctr.printers_0[i].printername.buffer, sizeof(fstring), -1, STR_TERMINATE); py_from_PRINTER_INFO_0(&value, &ctr.printers_0[i]); @@ -363,7 +363,7 @@ PyObject *spoolss_enumprinters(PyObject *self, PyObject *args, PyObject *kw) PyDict_SetItemString( value, "level", PyInt_FromLong(0)); - PyDict_SetItemString(result, name, value); + PyDict_SetItemString(result, s, value); } break; @@ -372,9 +372,9 @@ PyObject *spoolss_enumprinters(PyObject *self, PyObject *args, PyObject *kw) for(i = 0; i < num_printers; i++) { PyObject *value; - fstring name; + fstring s; - rpcstr_pull(name, ctr.printers_1[i].name.buffer, + rpcstr_pull(s, ctr.printers_1[i].name.buffer, sizeof(fstring), -1, STR_TERMINATE); py_from_PRINTER_INFO_1(&value, &ctr.printers_1[i]); @@ -382,7 +382,7 @@ PyObject *spoolss_enumprinters(PyObject *self, PyObject *args, PyObject *kw) PyDict_SetItemString( value, "level", PyInt_FromLong(1)); - PyDict_SetItemString(result, name, value); + PyDict_SetItemString(result, s, value); } break; @@ -391,9 +391,9 @@ PyObject *spoolss_enumprinters(PyObject *self, PyObject *args, PyObject *kw) for(i = 0; i < num_printers; i++) { PyObject *value; - fstring name; + fstring s; - rpcstr_pull(name, ctr.printers_2[i].printername.buffer, + rpcstr_pull(s, ctr.printers_2[i].printername.buffer, sizeof(fstring), -1, STR_TERMINATE); py_from_PRINTER_INFO_2(&value, &ctr.printers_2[i]); @@ -401,7 +401,7 @@ PyObject *spoolss_enumprinters(PyObject *self, PyObject *args, PyObject *kw) PyDict_SetItemString( value, "level", PyInt_FromLong(2)); - PyDict_SetItemString(result, name, value); + PyDict_SetItemString(result, s, value); } break; |