From: Kostin Mikhail ksgosnezhok@gmail.com
--- programs/regsvr32/regsvr32.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/programs/regsvr32/regsvr32.c b/programs/regsvr32/regsvr32.c index b0889c9034a..f6f158d6783 100644 --- a/programs/regsvr32/regsvr32.c +++ b/programs/regsvr32/regsvr32.c @@ -346,6 +346,9 @@ int __cdecl wmain(int argc, WCHAR* argv[]) case 'n': CallRegister = FALSE; break; + case 'c': + FIXME("unimplemented switch /c\n"); + break; default: output_write(TRUE, STRING_UNRECOGNIZED_SWITCH, argv[i]); return INVALID_ARG;
Apparently it was supposed to send output to the console: https://stackoverflow.com/questions/63694049/what-does-the-undocumented-c-op...
It should be safe to ignore it.
Without this change, regsvr32 only prints help and exits immediately when the flag "/c" switch is specified.
Yes of course, it needs to be ignored explicitly.
Do I need to make any changes, or can the patch go this way?