1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r11378: Fix an uninitialized variable warning. Tridge, I'm 99.999% sure this was a

simple cut&paste error, but you might recheck this.

Volker
This commit is contained in:
Volker Lendecke 2005-10-28 19:14:46 +00:00 committed by Gerald (Jerry) Carter
parent 0b54405685
commit 55b5b100e9

View File

@ -232,7 +232,7 @@ static int ldb_comparison_utctime(struct ldb_context *ldb, void *mem_ctx,
{
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;
}