Re: [Openvpn-devel] [PATCH 1/4] ntlm: convert binary buffers to uint8_t *

2017-07-22 Thread Steffan Karger
Hi, On 10-07-17 06:34, Antonio Quartulli wrote: > several binary buffers in the ntml component are stored > as char *, however this generates a lot of warnings, because > hashing functions expect something unsigned. > > Convert binary buffers to uint8_t *, while use explicit cast > for buffers th

[Openvpn-devel] [PATCH 1/4] ntlm: convert binary buffers to uint8_t *

2017-07-09 Thread Antonio Quartulli
several binary buffers in the ntml component are stored as char *, however this generates a lot of warnings, because hashing functions expect something unsigned. Convert binary buffers to uint8_t *, while use explicit cast for buffers that are really carrying a string inside. This commit removes