https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d3d5eae19e1f6890e6390…
commit d3d5eae19e1f6890e6390fab0d6f8f044bf61835
Author: Eric Kohl <eric.kohl(a)reactos.org>
AuthorDate: Sun Jun 5 17:36:32 2022 +0200
Commit: Eric Kohl <eric.kohl(a)reactos.org>
CommitDate: Sun Jun 5 17:36:32 2022 +0200
[DISKPART] Add the SET command as a SETID alias
---
base/system/diskpart/interpreter.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/base/system/diskpart/interpreter.c b/base/system/diskpart/interpreter.c
index 08be9411fdb..34fdd034d68 100644
--- a/base/system/diskpart/interpreter.c
+++ b/base/system/diskpart/interpreter.c
@@ -86,6 +86,7 @@ COMMAND cmds[] =
{L"SELECT", L"VOLUME", NULL, SelectVolume,
IDS_HELP_SELECT_VOLUME, MSG_COMMAND_SELECT_VOLUME},
// {L"SELECT", L"VDISK", NULL, SelectVirtualDisk,
IDS_HELP_SELECT_VDISK, MSG_COMMAND_SELECT_VDISK},
+ {L"SET", NULL, NULL, setid_main,
IDS_HELP_SETID, MSG_COMMAND_SETID},
{L"SETID", NULL, NULL, setid_main,
IDS_HELP_SETID, MSG_COMMAND_SETID},
{L"SHRINK", NULL, NULL, shrink_main,
IDS_HELP_SHRINK, MSG_COMMAND_SHRINK},