| Summary: | Build warning in mm_answer_keyallowed() | ||
|---|---|---|---|
| Product: | Portable OpenSSH | Reporter: | balu <balu.gajjala> |
| Component: | Build system | Assignee: | Assigned to nobody <unassigned-bugs> |
| Status: | CLOSED DUPLICATE | ||
| Severity: | minor | CC: | balu.gajjala, dtucker |
| Priority: | P5 | ||
| Version: | 8.5p1 | ||
| Hardware: | Other | ||
| OS: | Windows 10 | ||
This was fixed in https://github.com/openssh/openssh-portable/commit/160db17fc678ceb5e3fd4a7e006cc73866f484aaafter 8.5. *** This bug has been marked as a duplicate of bug 3269 *** closing resolved bugs as of 8.6p1 release |
Warning C4133 'function': incompatible types - from 'mm_keytype *' to 'u_int32_t * Code change, From if ((r = sshbuf_get_u32(m, &type)) != 0 || To if ((r = sshbuf_get_u32(m, &(u_int32_t)type)) != 0 ||