diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-02 03:58:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:15 -0500 |
commit | 5011f901aa0140ed60a0b58e80ab0f14810ba432 (patch) | |
tree | 379ad85e8627394a47bbac5e783e0955a5a5d481 /source4/librpc/rpc/dcerpc_util.c | |
parent | 2f7d7e47e38d88655baddad4e2e0572d4c158f70 (diff) | |
download | samba-5011f901aa0140ed60a0b58e80ab0f14810ba432.tar.gz samba-5011f901aa0140ed60a0b58e80ab0f14810ba432.tar.bz2 samba-5011f901aa0140ed60a0b58e80ab0f14810ba432.zip |
r3457: s_addr is a macro on solaris, so we can't use it in structure names. arrgh.
(This used to be commit 7842b23d01c53009259a2461600bd01159cecebf)
Diffstat (limited to 'source4/librpc/rpc/dcerpc_util.c')
-rw-r--r-- | source4/librpc/rpc/dcerpc_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index db30354609..af92743ccb 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -387,7 +387,7 @@ const char *dcerpc_floor_get_rhs_data(TALLOC_CTX *mem_ctx, struct epm_floor *flo { struct ipv4_addr in; - in.s_addr = htonl(floor->rhs.ip.address); + in.addr = htonl(floor->rhs.ip.address); return talloc_strdup(mem_ctx, sys_inet_ntoa(in)); } |