diff options
author | 2021-03-02 16:17:26 +0000 | |
---|---|---|
committer | 2021-03-02 16:17:26 +0000 | |
commit | ea9e12228e8996aa4d0e0dee0082d37f3243b332 (patch) | |
tree | 6cd996e47a01e1d9e6e8bf1780adbf1aaa0b985e | |
parent | Fix misleading indentation in SSL_get_error() (diff) | |
download | wireguard-openbsd-ea9e12228e8996aa4d0e0dee0082d37f3243b332.tar.xz wireguard-openbsd-ea9e12228e8996aa4d0e0dee0082d37f3243b332.zip |
Rename local variable 'cur_time' in set_timeout() to 'now' like
all the other struct timespec variables holding the current time.
-rw-r--r-- | sbin/dhclient/dispatch.c | 8 |
1 files 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 <henning@openbsd.org> @@ -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; } |