mirror of
https://github.com/reactos/reactos.git
synced 2026-07-06 17:44:24 +08:00
[REGSRV32] accept '-' as command line delimiter symbol as well
svn path=/trunk/; revision=71340
This commit is contained in:
@@ -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'):
|
||||
|
||||
Reference in New Issue
Block a user