https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f37dd1e10a50b1b8f57afeb7d3226bcc9da23c4c

commit f37dd1e10a50b1b8f57afeb7d3226bcc9da23c4c
Author:     Hermès Bélusca-Maïto <[email protected]>
AuthorDate: Tue Oct 9 00:25:01 2018 +0200
Commit:     Hermès Bélusca-Maïto <[email protected]>
CommitDate: Tue Oct 9 00:25:01 2018 +0200

    [MKHIVE] Remove support for '/' options, this does not behave well under 
Linux.
---
 sdk/tools/mkhive/mkhive.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdk/tools/mkhive/mkhive.c b/sdk/tools/mkhive/mkhive.c
index ad667fd43f..d09d97f290 100644
--- a/sdk/tools/mkhive/mkhive.c
+++ b/sdk/tools/mkhive/mkhive.c
@@ -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)
         {

Reply via email to