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>2021-06-07 16:18:30 +0300
committerdnobori <da.git@softether.co.jp>2021-06-07 16:18:30 +0300
commitddc99f085fd6c54feaf4e41912bc8ab5903bdf8e (patch)
tree7c60824b852a62ea79e528b4607f47a0ecf55009 /src/Mayaqua/TcpIp.c
parentec3d052e218281dc1aa734f1bf84cf42127744aa (diff)
v4.36-9754-betav4.36-9754-beta
Diffstat (limited to 'src/Mayaqua/TcpIp.c')
-rw-r--r--src/Mayaqua/TcpIp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mayaqua/TcpIp.c b/src/Mayaqua/TcpIp.c
index 30f89c19..d244c666 100644
--- a/src/Mayaqua/TcpIp.c
+++ b/src/Mayaqua/TcpIp.c
@@ -3642,8 +3642,8 @@ DHCP_OPTION *NewDhcpOption(UINT id, void *data, UINT size)
ret = ZeroMalloc(sizeof(DHCP_OPTION));
ret->Data = ZeroMalloc(size);
Copy(ret->Data, data, size);
- ret->Size = (UCHAR)size;
- ret->Id = (UCHAR)id;
+ ret->Size = size;
+ ret->Id = id;
return ret;
}