https://bugzilla.mindrot.org/show_bug.cgi?id=3294

            Bug ID: 3294
           Summary: Build warning in mm_answer_keyallowed()
           Product: Portable OpenSSH
           Version: 8.5p1
          Hardware: Other
                OS: Windows 10
            Status: NEW
          Severity: minor
          Priority: P5
         Component: Build system
          Assignee: [email protected]
          Reporter: [email protected]

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 ||

-- 
You are receiving this mail because:
You are watching the assignee of the bug.
_______________________________________________
openssh-bugs mailing list
[email protected]
https://lists.mindrot.org/mailman/listinfo/openssh-bugs

Reply via email to