From ea9e12228e8996aa4d0e0dee0082d37f3243b332 Mon Sep 17 00:00:00 2001 From: krw Date: Tue, 2 Mar 2021 16:17:26 +0000 Subject: [PATCH] Rename local variable 'cur_time' in set_timeout() to 'now' like all the other struct timespec variables holding the current time. --- sbin/dhclient/dispatch.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sbin/dhclient/dispatch.c b/sbin/dhclient/dispatch.c index 1e6a570f90a..fe71398702d 100644 --- a/sbin/dhclient/dispatch.c +++ b/sbin/dhclient/dispatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.c,v 1.169 2021/02/27 13:59:00 krw Exp $ */ +/* $OpenBSD: dispatch.c,v 1.170 2021/03/02 16:17:26 krw Exp $ */ /* * Copyright 2004 Henning Brauer @@ -303,12 +303,12 @@ void set_timeout(struct interface_info *ifi, time_t secs, void (*where)(struct interface_info *)) { - struct timespec cur_time; + struct timespec now; - clock_gettime(CLOCK_REALTIME, &cur_time); + clock_gettime(CLOCK_REALTIME, &now); timespecclear(&ifi->timeout); ifi->timeout.tv_sec = secs; - timespecadd(&ifi->timeout, &cur_time, &ifi->timeout); + timespecadd(&ifi->timeout, &now, &ifi->timeout); ifi->timeout_func = where; } -- 2.20.1