From 80d71456cf13400f1bb97be03a29f9b085fd3309 Mon Sep 17 00:00:00 2001 From: Aaron Jones Date: Fri, 8 Apr 2022 16:47:18 +0000 Subject: [PATCH] authd/providers/opm.c: include (#318) This header defines the TCP_NODELAY flag, which this compilation unit uses. Other C libraries implicitly include this header from some other header we are using (I have not investigated which), but musl's system headers do not, which breaks building on musl. Reported-by: 0x5c --- authd/providers/opm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/authd/providers/opm.c b/authd/providers/opm.c index 39b79e30..54ae6c2d 100644 --- a/authd/providers/opm.c +++ b/authd/providers/opm.c @@ -26,6 +26,8 @@ #include "notice.h" #include "provider.h" +#include // TCP_NODELAY + #define SELF_PID (opm_provider.id) #define OPM_READSIZE 128