/src/wireshark/wsutil/please_report_bug.c
Line | Count | Source |
1 | | /* please_report_bug.c |
2 | | * Routines returning strings to use when reporting a bug. |
3 | | * They ask the user to report a bug to the Wireshark developers. |
4 | | * |
5 | | * Wireshark - Network traffic analyzer |
6 | | * By Gerald Combs <gerald@wireshark.org> |
7 | | * Copyright 1998 Gerald Combs |
8 | | * |
9 | | * SPDX-License-Identifier: GPL-2.0-or-later |
10 | | */ |
11 | | |
12 | | #include "please_report_bug.h" |
13 | | |
14 | | /* |
15 | | * Long message, to use in alert boxes and printed messages. |
16 | | */ |
17 | | const char * |
18 | | please_report_bug(void) |
19 | 0 | { |
20 | 0 | return |
21 | 0 | "Please report this to the Wireshark developers as a bug.\n" |
22 | 0 | "https://gitlab.com/wireshark/wireshark/issues\n" |
23 | 0 | "(This is not a crash; please do not say, in your report, that it is a crash.)"; |
24 | 0 | } |
25 | | |
26 | | /* |
27 | | * Short message, to use in status bar messages. |
28 | | */ |
29 | | const char * |
30 | | please_report_bug_short(void) |
31 | 0 | { |
32 | 0 | return "Please report this to the Wireshark developers."; |
33 | 0 | } |