diff options
Diffstat (limited to 'usr.sbin/sasyncd/sasyncd.h')
-rw-r--r-- | usr.sbin/sasyncd/sasyncd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sasyncd/sasyncd.h b/usr.sbin/sasyncd/sasyncd.h index 4f2847ca3dd..e6b3b3a74e5 100644 --- a/usr.sbin/sasyncd/sasyncd.h +++ b/usr.sbin/sasyncd/sasyncd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sasyncd.h,v 1.18 2016/07/18 21:22:09 benno Exp $ */ +/* $OpenBSD: sasyncd.h,v 1.19 2018/04/10 15:58:21 cheloha Exp $ */ /* * Copyright (c) 2005 Håkan Olsson. All rights reserved. @@ -37,7 +37,7 @@ enum RUNSTATE { INIT = 0, SLAVE, MASTER, FAIL }; #define CARPSTATES { "INIT", "SLAVE", "MASTER", "FAIL" } struct syncpeer; -struct timeval; +struct timespec; struct cfgstate { enum RUNSTATE runstate; @@ -171,6 +171,6 @@ void pfkey_snapshot(void *); /* timer.c */ void timer_init(void); -void timer_next_event(struct timeval *); +void timer_next_event(struct timespec *); void timer_run(void); int timer_add(char *, u_int32_t, void (*)(void *), void *); |