From d06073d0d61817f09939b9ba465ce76cbc5e6bff Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Wed, 15 Oct 2014 11:11:08 +0100 Subject: [PATCH] Fix a1e3b1cf3c5991ef550f608ee816e9274e547dda copy/paste error --- libraries/libldap/result.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libldap/result.c b/libraries/libldap/result.c index b366ce8e01..f55cd14682 100644 --- a/libraries/libldap/result.c +++ b/libraries/libldap/result.c @@ -387,7 +387,7 @@ wait4msg( #ifdef HAVE_GETTIMEOFDAY gettimeofday( &curr_time_tv, NULL ); #else /* ! HAVE_GETTIMEOFDAY */ - start_time_tv.tv_sec = time( NULL ); + curr_time_tv.tv_sec = time( NULL ); curr_time_tv.tv_usec = 0; #endif /* ! HAVE_GETTIMEOFDAY */ -- 2.39.5