0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-20 12:02:28 +02:00

Fix #elif TARGET_LINUX missing defined() call

I found this when playing with building OpenVPN with cmake.

Signed-off-by: Arne Schwabe <arne@rfc2549.org>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20210328143633.10300-1-arne@rfc2549.org>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg21884.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
This commit is contained in:
Arne Schwabe 2021-03-28 16:36:33 +02:00 committed by Gert Doering
parent f91e211637
commit d11c273b07

View File

@ -130,7 +130,7 @@ struct tuntap_options {
int dns6_len;
};
#elif TARGET_LINUX
#elif defined(TARGET_LINUX)
struct tuntap_options {
int txqueuelen;