1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-13 19:24:57 +03:00

Cedar: fix compilation on FreeBSD, broken by #337

This commit is contained in:
Davide Beatrici
2018-08-23 04:39:13 +02:00
parent 2b855c8db7
commit 7612c2bf5d
2 changed files with 3 additions and 3 deletions

View File

@ -672,11 +672,11 @@ void UnixCloseTapDevice(int fd)
{
}
int UnixCreateTapDeviceEx(char *name, char *prefix, UCHAR *mac_address)
int UnixCreateTapDeviceEx(char *name, char *prefix, UCHAR *mac_address, bool create_up)
{
return -1;
}
int UnixCreateTapDevice(char *name, UCHAR *mac_address)
int UnixCreateTapDevice(char *name, UCHAR *mac_address, bool create_up)
{
return -1;
}