sync slaacd(8) log.c to dhcpleased(8)'s version.
authorflorian <florian@openbsd.org>
Sun, 14 Jul 2024 08:57:32 +0000 (08:57 +0000)
committerflorian <florian@openbsd.org>
Sun, 14 Jul 2024 08:57:32 +0000 (08:57 +0000)
We don't built log.c on the ramdisk so no need for ifndef small.

sbin/slaacd/log.c

index 3c75d41..2334af8 100644 (file)
@@ -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 */