diff options
author | Alexandre Snarskii <[email protected]> | 2016-10-13 15:02:36 +0300 |
---|---|---|
committer | Alexandre Snarskii <[email protected]> | 2016-10-13 15:02:36 +0300 |
commit | e4cba54c5c6fc2b099485947ca8fca09a3ad26c9 (patch) | |
tree | 8596933f87df1f2154c695c8f98aafde553be394 /lib/erl_interface/src/connect | |
parent | 9c013e2f9f7e32de38dc9640038aee1840d68e04 (diff) | |
download | otp-e4cba54c5c6fc2b099485947ca8fca09a3ad26c9.tar.gz otp-e4cba54c5c6fc2b099485947ca8fca09a3ad26c9.tar.bz2 otp-e4cba54c5c6fc2b099485947ca8fca09a3ad26c9.zip |
use only two low bits of creation
Diffstat (limited to 'lib/erl_interface/src/connect')
-rw-r--r-- | lib/erl_interface/src/connect/ei_connect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/erl_interface/src/connect/ei_connect.c b/lib/erl_interface/src/connect/ei_connect.c index 624100ad49..c193fd804a 100644 --- a/lib/erl_interface/src/connect/ei_connect.c +++ b/lib/erl_interface/src/connect/ei_connect.c @@ -423,7 +423,7 @@ int ei_connect_xinit(ei_cnode* ec, const char *thishostname, } #endif /* _REENTRANT */ - ec->creation = creation; + ec->creation = creation & 0x3; /* 2 bits */ if (cookie) { if (strlen(cookie) >= sizeof(ec->ei_connect_cookie)) { @@ -462,7 +462,7 @@ int ei_connect_xinit(ei_cnode* ec, const char *thishostname, strcpy(ec->self.node,thisnodename); ec->self.num = 0; ec->self.serial = 0; - ec->self.creation = creation; + ec->self.creation = creation & 0x3; /* 2 bits */ if ((dbglevel = getenv("EI_TRACELEVEL")) != NULL || (dbglevel = getenv("ERL_DEBUG_DIST")) != NULL) |