summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2024-07-14 08:57:33 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2024-07-14 08:57:33 +0000
commitb2d0b3d8e2c7357f3086a40f515808f0dd938db4 (patch)
treedaeba5af97d4bc2370108b0f760b983c7aa4a292 /sbin
parentfdf3d99c90c20385ad2abd77a589babcce531623 (diff)
sync slaacd(8) log.c to dhcpleased(8)'s version.
We don't built log.c on the ramdisk so no need for ifndef small.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/slaacd/log.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/slaacd/log.c b/sbin/slaacd/log.c
index 3c75d41192e..2334af8104e 100644
--- a/sbin/slaacd/log.c
+++ b/sbin/slaacd/log.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.c,v 1.2 2021/03/20 16:46:03 kn Exp $ */
+/* $OpenBSD: log.c,v 1.3 2024/07/14 08:57:32 florian Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#ifndef SMALL
+
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
@@ -197,4 +197,3 @@ fatalx(const char *emsg, ...)
va_end(ap);
exit(1);
}
-#endif /* SMALL */