mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[REGSRV32] accept '-' as command line delimiter symbol as well
svn path=/trunk/; revision=71340
This commit is contained in:
parent
8a7240c71a
commit
d2a7e3aea8
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ int WINAPI _tWinMain(
|
|||
|
||||
// Find all arguments starting with a slash (/)
|
||||
for (i = 1; i < argc; i++) {
|
||||
if (*argv[i] == _T('/')) {
|
||||
if (*argv[i] == _T('/') || *argv[i] == '-') {
|
||||
switch (argv[i][1]) {
|
||||
case _T('u'):
|
||||
case _T('U'):
|
||||
|
|
Loading…
Reference in a new issue