aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/nifs/common/net_nif.c
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2018-06-11 14:40:58 +0200
committerMicael Karlberg <[email protected]>2018-09-18 14:50:18 +0200
commitf2a28200a826af65596bb554b014d2c93b6314a7 (patch)
tree314869b440b12370a8007817fc75906d5a8da508 /erts/emulator/nifs/common/net_nif.c
parentcc08971508f3515f9f3b6c406ff0f6a186b24f6b (diff)
downloadotp-f2a28200a826af65596bb554b014d2c93b6314a7.tar.gz
otp-f2a28200a826af65596bb554b014d2c93b6314a7.tar.bz2
otp-f2a28200a826af65596bb554b014d2c93b6314a7.zip
[net-nif] Removed the old net module
The old net module (in kernel) (deprecated) was removed and its function(s) has been moved into the new module. Also a minor updated to the info function. OTP-14831
Diffstat (limited to 'erts/emulator/nifs/common/net_nif.c')
-rw-r--r--erts/emulator/nifs/common/net_nif.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/erts/emulator/nifs/common/net_nif.c b/erts/emulator/nifs/common/net_nif.c
index 134b02d178..328fb52ac3 100644
--- a/erts/emulator/nifs/common/net_nif.c
+++ b/erts/emulator/nifs/common/net_nif.c
@@ -669,13 +669,15 @@ ERL_NIF_TERM nif_info(ErlNifEnv* env,
int argc,
const ERL_NIF_TERM argv[])
{
- ERL_NIF_TERM info;
+ ERL_NIF_TERM info, tmp;
NDBG( ("info -> entry\r\n") );
- info = enif_make_new_map(env);
+ tmp = enif_make_new_map(env);
+ if (!enif_make_map_put(env, tmp, atom_debug, BOOL2ATOM(data.debug), &info))
+ info = tmp;
- NDBG( ("info -> done\r\n") );
+ NDBG( ("info -> done: %T\r\n", info) );
return info;
}