[Openvpn-devel] Use include "buffer.h" instead of include <buffer.h>

Message ID 20221219172141.2565798-1-arne@rfc2549.org
State Accepted
Headers show
Series [Openvpn-devel] Use include "buffer.h" instead of include <buffer.h> | expand

Commit Message

Arne Schwabe Dec. 19, 2022, 5:21 p.m. UTC
My own non-standard cmake based build system found this one. But
even if this is not a problem with the normal autoconf based system
we should still be consistent.

Signed-off-by: Arne Schwabe <arne@rfc2549.org>
---
 src/openvpn/dco_freebsd.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Gert Doering Dec. 19, 2022, 5:36 p.m. UTC | #1
Acked-by: Gert Doering <gert@greenie.muc.de>

(Test compiled on FreeBSD, with DCO)

Your patch has been applied to the master branch.

commit 5bd787bb8fc647f508635b948be75179fbb0b8a5 (master)
commit d694814bde51e0d9fa17173e2072c8d037b1e78e (release/2.6)
Author: Arne Schwabe
Date:   Mon Dec 19 18:21:41 2022 +0100

     Use include buffer.h instead of include <buffer.h>

     Signed-off-by: Arne Schwabe <arne@rfc2549.org>
     Acked-by: Gert Doering <gert@greenie.muc.de>
     Message-Id: <20221219172141.2565798-1-arne@rfc2549.org>
     URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg25777.html
     Signed-off-by: Gert Doering <gert@greenie.muc.de>


--
kind regards,

Gert Doering

Patch

diff --git a/src/openvpn/dco_freebsd.h b/src/openvpn/dco_freebsd.h
index 0d059ddaf..2e35f3ace 100644
--- a/src/openvpn/dco_freebsd.h
+++ b/src/openvpn/dco_freebsd.h
@@ -22,7 +22,7 @@ 
 
 #if defined(ENABLE_DCO) && defined(TARGET_FREEBSD)
 
-#include <buffer.h>
+#include "buffer.h"
 #include "event.h"
 
 #include "ovpn_dco_freebsd.h"