Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordnobori <da.git@softether.co.jp>2018-04-21 10:23:29 +0300
committerdnobori <da.git@softether.co.jp>2018-04-21 10:23:29 +0300
commitd095a8269bb3563823c604ccb223b150fea7ed90 (patch)
tree679c15cac8e90f1b783459034cd58243135581a2 /src/Cedar/Client.c
parent6f19de577d36dee9b0adeff4ae4e07cc43e1349a (diff)
v4.27-9666-betav4.27-9666-beta
Diffstat (limited to 'src/Cedar/Client.c')
-rw-r--r--src/Cedar/Client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Cedar/Client.c b/src/Cedar/Client.c
index 3af48a45..a86c4ea9 100644
--- a/src/Cedar/Client.c
+++ b/src/Cedar/Client.c
@@ -431,7 +431,7 @@ void CiChangeAllVLanMacAddress(CLIENT *c)
RPC_CLIENT_ENUM_VLAN_ITEM *e = t.Items[i];
UCHAR mac[6];
- if (StrToMac(mac, e->MacAddress) && mac[1] == 0xAC)
+ if (StrToMac(mac, e->MacAddress) && ((mac[0] == 0x00 && mac[1] == 0xAC) || (mac[0] = 0x5E)))
{
char *name = e->DeviceName;
RPC_CLIENT_SET_VLAN s;