diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2024-06-05 16:15:48 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2024-06-05 16:15:48 +0000 |
commit | 1efba8e55747560fb5165c9196a31f2f103d7dfb (patch) | |
tree | 1d1f093c0924e8e217b2205edf2a73b2de96cba3 /sbin/dhcp6leased/control.c | |
parent | 32e83c6bcac92616e53b2af69fafff46b24b10e8 (diff) |
Implement lease files.
Diffstat (limited to 'sbin/dhcp6leased/control.c')
-rw-r--r-- | sbin/dhcp6leased/control.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/dhcp6leased/control.c b/sbin/dhcp6leased/control.c index 5bc63c11af5..364b9ada478 100644 --- a/sbin/dhcp6leased/control.c +++ b/sbin/dhcp6leased/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.2 2024/06/02 13:35:52 florian Exp $ */ +/* $OpenBSD: control.c,v 1.3 2024/06/05 16:15:47 florian Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -28,6 +28,7 @@ #include <errno.h> #include <event.h> #include <imsg.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> |