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