From: Bjoern Jacke Date: Wed, 28 Nov 2018 10:38:44 +0000 (-0600) Subject: s3:smbd: Fix build on AIX X-Git-Tag: tdb-1.3.17~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7d350b45bc032bf1b61f0184500d068631b7329;p=thirdparty%2Fsamba.git s3:smbd: Fix build on AIX AIX makes a define of ip_len in netinet/ip.h (sic!) BUG: https://bugzilla.samba.org/show_bug.cgi?id=13731 Signed-off-by: Bjoern Jacke Reviewed-by: Andreas Schneider Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Fri Jan 4 16:29:50 CET 2019 on sn-devel-144 --- diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 4174c9868f3..a607abb5010 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -482,7 +482,7 @@ static void reply_sesssetup_and_X_spnego(struct smb_request *req) struct shutdown_state { const char *ip; - size_t ip_len; + size_t ip_length; struct messaging_context *msg_ctx; }; @@ -517,10 +517,10 @@ static int shutdown_other_smbds(struct smbXsrv_session_global0 *session, } addr_len = port_colon - addr; - if ((addr_len != state->ip_len) || - (strncmp(addr, state->ip, state->ip_len) != 0)) { + if ((addr_len != state->ip_length) || + (strncmp(addr, state->ip, state->ip_length) != 0)) { DEBUG(10, ("%s (%zu) does not match %s (%zu)\n", - state->ip, state->ip_len, addr, addr_len)); + state->ip, state->ip_length, addr, addr_len)); return 0; } @@ -554,7 +554,7 @@ static void setup_new_vc_session(struct smbd_server_connection *sconn) if (port_colon == NULL) { return; } - state.ip_len = port_colon - addr; + state.ip_length = port_colon - addr; state.msg_ctx = sconn->msg_ctx; smbXsrv_session_global_traverse(shutdown_other_smbds, &state); TALLOC_FREE(addr);