diff options
author | Micael Karlberg <[email protected]> | 2012-02-08 12:50:21 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2012-02-08 12:50:21 +0100 |
commit | 9a8b3a5c58a2f688aaae1135bf71c6148f27aa7e (patch) | |
tree | ecd2fa393d12d9624972558a0f07bab7c06bcdeb /lib/inets/src/http_server/httpd_conf.erl | |
parent | 6673b675b93de3e5466b18c7c8cd848b9dc6ec0a (diff) | |
download | otp-9a8b3a5c58a2f688aaae1135bf71c6148f27aa7e.tar.gz otp-9a8b3a5c58a2f688aaae1135bf71c6148f27aa7e.tar.bz2 otp-9a8b3a5c58a2f688aaae1135bf71c6148f27aa7e.zip |
[inets/httpd] Options parsing minor improvement
Diffstat (limited to 'lib/inets/src/http_server/httpd_conf.erl')
-rw-r--r-- | lib/inets/src/http_server/httpd_conf.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/src/http_server/httpd_conf.erl b/lib/inets/src/http_server/httpd_conf.erl index 2ffd134d3d..b575d7331b 100644 --- a/lib/inets/src/http_server/httpd_conf.erl +++ b/lib/inets/src/http_server/httpd_conf.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2011. All Rights Reserved. +%% Copyright Ericsson AB 1997-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -495,7 +495,7 @@ validate_properties(Properties) -> validate_properties2(Properties) -> case proplists:get_value(bind_address, Properties) of undefined -> - case proplists:get_value(sock_type, Properties, ip_comm) of + case proplists:get_value(sock_type, Properties, ip_comm) of ip_comm -> case proplists:get_value(ipfamily, Properties) of undefined -> |