[NETSHELL] Disable the 'Delete' menu item for physical network interfaces

CORE-16821
This commit is contained in:
Eric Kohl 2020-04-10 19:34:38 +02:00
parent 3b3c5153e7
commit eb1fd0c090

View file

@ -293,7 +293,13 @@ CNetConnection::GetProperties(NETCON_PROPERTIES **ppProps)
/* Enable 'Rename' and 'Delete' for Adminstrators only */
if (IsUserAdmin())
{
pProperties->dwCharacter |= (NCCF_ALLOW_RENAME | NCCF_ALLOW_REMOVAL);
pProperties->dwCharacter |= NCCF_ALLOW_RENAME;
/* Virtual network interfaces can be deleted */
if (IfEntry.dwType == IF_TYPE_TUNNEL)
{
pProperties->dwCharacter |= NCCF_ALLOW_REMOVAL;
}
}
else
{