mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Fix a warning on host "gwen"
cc: "../librpc/ndr/ndr_basic.c", line 572: warning 604: Pointers are not assignment-compatible. Apparently in_addr.s_addr is not compatible to uint32_t, maybe a 32-bit signed int.
This commit is contained in:
parent
e2052f128f
commit
eea114a856
@ -568,9 +568,10 @@ _PUBLIC_ enum ndr_err_code ndr_pull_time_t(struct ndr_pull *ndr, int ndr_flags,
|
||||
*/
|
||||
_PUBLIC_ enum ndr_err_code ndr_pull_ipv4address(struct ndr_pull *ndr, int ndr_flags, const char **address)
|
||||
{
|
||||
uint32_t s_addr;
|
||||
struct in_addr in;
|
||||
NDR_CHECK(ndr_pull_uint32(ndr, ndr_flags, &in.s_addr));
|
||||
in.s_addr = htonl(in.s_addr);
|
||||
NDR_CHECK(ndr_pull_uint32(ndr, ndr_flags, &s_addr));
|
||||
in.s_addr = htonl(s_addr);
|
||||
*address = talloc_strdup(ndr->current_mem_ctx, inet_ntoa(in));
|
||||
NDR_ERR_HAVE_NO_MEMORY(*address);
|
||||
return NDR_ERR_SUCCESS;
|
||||
|
Loading…
Reference in New Issue
Block a user