2 * Routines returning strings to use when reporting a bug.
3 * They ask the user to report a bug to the Wireshark developers.
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
12 #include "please_report_bug.h"
15 * Long message, to use in alert boxes and printed messages.
18 please_report_bug(void)
21 "Please report this to the Wireshark developers as a bug.\n"
22 "https://gitlab.com/wireshark/wireshark/issues\n"
23 "(This is not a crash; please do not say, in your report, that it is a crash.)";
27 * Short message, to use in status bar messages.
30 please_report_bug_short(void)
32 return "Please report this to the Wireshark developers.";