diff options
author | Peter Wu <peter@lekensteyn.nl> | 2018-12-26 18:10:12 +0100 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2019-01-02 12:08:20 +0000 |
commit | e2e5b01d771339a596a418ec306fe00ab504e593 (patch) | |
tree | 69b8cb5383cbb91c6890849194f2852bfeee1a94 /extcap/androiddump.c | |
parent | 974969cd0650d6c612e035b696b36c1d18b70bc9 (diff) | |
download | wireshark-e2e5b01d771339a596a418ec306fe00ab504e593.tar.gz wireshark-e2e5b01d771339a596a418ec306fe00ab504e593.tar.bz2 wireshark-e2e5b01d771339a596a418ec306fe00ab504e593.zip |
cli_main: remove real_main from stack traces for non-Windows
Restore the "main" name since that is used everywhere else except for
Windows. On Windows, "main" is renamed via a macro to avoid a conflict
with "wmain" and to allow it to be called in cli_main.c.
For those wondering, GUI applications (such as Qt) have a different
entry point, namely WinMain. In Qt5, src/winmain/qtmain_win.cpp defines
WinMain, but seems to convert its arguments from Unicode to CP_ACP
(ASCII). It might not support UTF-8, but I did not verify this.
Change-Id: I93fa59324eb2ef95a305b08fc5ba34d49cc73bf0
Reviewed-on: https://code.wireshark.org/review/31208
Petri-Dish: Peter Wu <peter@lekensteyn.nl>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'extcap/androiddump.c')
-rw-r--r-- | extcap/androiddump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extcap/androiddump.c b/extcap/androiddump.c index 56868f2014..b3fd931c2f 100644 --- a/extcap/androiddump.c +++ b/extcap/androiddump.c @@ -2480,7 +2480,7 @@ static int capture_android_tcpdump(char *interface, char *fifo, return EXIT_CODE_SUCCESS; } -int real_main(int argc, char **argv) { +int main(int argc, char *argv[]) { int ret = EXIT_CODE_GENERIC; int option_idx = 0; int result; |