Author: vlendec
Date: 2005-10-28 19:14:46 +0000 (Fri, 28 Oct 2005)
New Revision: 11378

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=11378

Log:
Fix an uninitialized variable warning. Tridge, I'm 99.999% sure this was a
simple cut&paste error, but you might recheck this.

Volker

Modified:
   branches/SAMBA_4_0/source/lib/ldb/common/attrib_handlers.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/common/attrib_handlers.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/common/attrib_handlers.c  2005-10-28 
18:26:26 UTC (rev 11377)
+++ branches/SAMBA_4_0/source/lib/ldb/common/attrib_handlers.c  2005-10-28 
19:14:46 UTC (rev 11378)
@@ -232,7 +232,7 @@
 {
        time_t t1, t2;
        t1 = ldb_string_to_time((char *)v1->data);
-       t1 = ldb_string_to_time((char *)v1->data);
+       t2 = ldb_string_to_time((char *)v2->data);
        return (int)t2 - (int)t1;
 }
 

Reply via email to