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