The branch, master has been updated
       via  b57d11f... s4:py_nttime2string - removed unused variable "nt2"
      from  7e5fee9... s4-smbtorture: fill in test_rap_print().

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit b57d11f1b36389c2dba025912db32d465ef6e7c8
Author: Matthias Dieter Wallnöfer <[email protected]>
Date:   Tue May 4 17:21:30 2010 +0200

    s4:py_nttime2string - removed unused variable "nt2"
    
    And add some linespaces to look better.

-----------------------------------------------------------------------

Summary of changes:
 source4/scripting/python/pyglue.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/scripting/python/pyglue.c 
b/source4/scripting/python/pyglue.c
index b2a9d2c..e1c4fea 100644
--- a/source4/scripting/python/pyglue.c
+++ b/source4/scripting/python/pyglue.c
@@ -123,18 +123,19 @@ static PyObject *py_nttime2unix(PyObject *self, PyObject 
*args)
 static PyObject *py_nttime2string(PyObject *self, PyObject *args)
 {
        PyObject *ret;
-       NTTIME nt, nt2;
+       NTTIME nt;
        TALLOC_CTX *tmp_ctx;
        const char *string;
-
        if (!PyArg_ParseTuple(args, "K", &nt))
                return NULL;
+
        tmp_ctx = talloc_new(NULL);
 
        string = nt_time_string(tmp_ctx, nt);
        ret =  PyString_FromString(string);
 
        talloc_free(tmp_ctx);
+
        return ret;
 }
 


-- 
Samba Shared Repository

Reply via email to