diff options
Diffstat (limited to 'example/example.c')
-rw-r--r-- | example/example.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/example/example.c b/example/example.c index 828a8d0..d006afa 100644 --- a/example/example.c +++ b/example/example.c @@ -417,12 +417,11 @@ int __cdecl main(void) }
IpInterface.UseAutomaticMetric = FALSE;
IpInterface.Metric = 0;
- IpInterface.NlMtu = 1420;
IpInterface.SitePrefixLength = 0;
LastError = SetIpInterfaceEntry(&IpInterface);
if (LastError != ERROR_SUCCESS)
{
- LogError(L"Failed to set metric and MTU", LastError);
+ LogError(L"Failed to set metric", LastError);
goto cleanupAdapter;
}
|