mirror of
https://github.com/reactos/reactos.git
synced 2026-06-06 05:09:11 +08:00
[MKHIVE] Remove support for '/' options, this does not behave well under Linux.
This commit is contained in:
@@ -106,7 +106,7 @@ int main(int argc, char *argv[])
|
||||
printf("Binary hive maker\n");
|
||||
|
||||
/* Read the options */
|
||||
for (i = 1; i < argc && (*argv[i] == '-' || *argv[i] == '/'); i++)
|
||||
for (i = 1; i < argc && *argv[i] == '-'; i++)
|
||||
{
|
||||
if (argv[i][1] == '?' && argv[i][1] == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user