[PATCH 0/1] MR7725: regsvr32: Implemented stub for undocumented flag /c.
From: Kostin Mikhail <ksgosnezhok(a)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; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7725
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. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7725#note_99750
Without this change, regsvr32 only prints help and exits immediately when the flag "/c" switch is specified. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7725#note_99753
Yes of course, it needs to be ignored explicitly. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7725#note_99757
Do I need to make any changes, or can the patch go this way? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7725#note_99759
participants (3)
-
Alexandre Julliard (@julliard) -
Kostin Mikhail -
Kostin Mikhail (@M23SNEZ3)