mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
[MKHIVE] Remove support for '/' options, this does not behave well under Linux.
This commit is contained in:
parent
efbe071e02
commit
f37dd1e10a
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue