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:
parent
0b54405685
commit
55b5b100e9
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user