diff options
author | Hans Bolinder <[email protected]> | 2017-06-28 16:11:34 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2017-07-06 17:53:23 +0200 |
commit | abb8e79663d0527f2987d1d7e914c65117b396a9 (patch) | |
tree | fa896b44cc0e208afa6d7c7ee9a16d8f2c835095 /lib/kernel/src/inet_config.erl | |
parent | e2f42f4ce7d2cb2a9eaa1cfeb1b6b69b061704f7 (diff) | |
download | otp-abb8e79663d0527f2987d1d7e914c65117b396a9.tar.gz otp-abb8e79663d0527f2987d1d7e914c65117b396a9.tar.bz2 otp-abb8e79663d0527f2987d1d7e914c65117b396a9.zip |
kernel: Do not use deprecated functions in string(3)
Diffstat (limited to 'lib/kernel/src/inet_config.erl')
-rw-r--r-- | lib/kernel/src/inet_config.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kernel/src/inet_config.erl b/lib/kernel/src/inet_config.erl index 4bbc520449..9f76360b8b 100644 --- a/lib/kernel/src/inet_config.erl +++ b/lib/kernel/src/inet_config.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2016. All Rights Reserved. +%% Copyright Ericsson AB 1997-2017. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -369,7 +369,7 @@ win32_load1(Reg,Type,HFileKey) -> end. win32_split_line(Line,nt) -> inet_parse:split_line(Line); -win32_split_line(Line,windows) -> string:tokens(Line, ","). +win32_split_line(Line,windows) -> string:lexemes(Line, ","). win32_get_strings(Reg, Names) -> win32_get_strings(Reg, Names, []). |