mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[NETSHELL] Disable the 'Delete' menu item for physical network interfaces
CORE-16821
This commit is contained in:
parent
3b3c5153e7
commit
eb1fd0c090
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue