4245a14b80977c224c7310daee16a33dd8604169
[openssl.git] / .github / ISSUE_TEMPLATE / bug_report.md
1 ---
2 name: Bug report
3 labels: 'issue: bug report'
4 about: Report a defect in the software
5
6 ---
7
8 <!--
9 Thank you for your bug report. If this is your first one,
10 please take the time to read the following lines before posting it.
11
12 NOTE:
13
14     If you're asking about how to use OpenSSL, this isn't the right
15     forum.  Please see our User Support resources:
16     https://github.com/openssl/openssl/blob/master/SUPPORT.md
17
18 Please remember to tell us in what OpenSSL version you found the issue.
19
20 For build issues:
21
22     If this is a build issue, please include the configuration output
23     as well as a log of all errors.  Don't forget to include the exact
24     commands you typed.
25
26     With OpenSSL before 1.1.1, the configuration output comes from the
27     configuration command.  With OpenSSL 1.1.1 and on, it's the output
28     of `perl configdata.pm --dump`
29
30 For other issues:
31
32     If it isn't a build issue, example code or commands to reproduce
33     the issue is highly appreciated.
34     Also, please remember to tell us if you worked with your own
35     OpenSSL build or if it is system provided.
36
37 Please remember to put ``` lines before and after any commands plus
38 output and code, like this:
39
40     ```
41     $ echo output output output
42     output output output
43     ```
44
45     ```
46     #include <stdio.h>
47
48     int main() {
49         int foo = 1;
50         printf("%d\n", foo);
51     }
52     ```
53 -->