Use gmtime_r so the current time isn't overwritten, the minute comparison works

and the clock is actually updated. It was already used for lock-server but not
here.
pull/1/head
Nicholas Marriott 2009-06-27 14:40:22 +00:00
parent 2660692fb1
commit 710393e388
1 changed files with 4 additions and 4 deletions

View File

@ -93,13 +93,13 @@ void
window_clock_timer(struct window_pane *wp)
{
struct window_clock_mode_data *data = wp->modedata;
struct tm *now, *then;
struct tm now, then;
time_t t;
t = time(NULL);
now = gmtime(&t);
then = gmtime(&data->tim);
if (now->tm_min == then->tm_min)
gmtime_r(&t, &now);
gmtime_r(&data->tim, &then);
if (now.tm_min == then.tm_min)
return;
data->tim = t;