diff options
author | Micael Karlberg <[email protected]> | 2010-05-27 14:27:05 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-05-27 14:27:05 +0000 |
commit | c2535851c84a2de16b9dcdf651fb5f9686860155 (patch) | |
tree | a3b09c54d2472c3c12fa4180f865539ab70f7ad2 /lib/inets/src/http_server/httpd_sup.erl | |
parent | 141ff3c087ca856d21d0395ae9d31401028fd64b (diff) | |
download | otp-c2535851c84a2de16b9dcdf651fb5f9686860155.tar.gz otp-c2535851c84a2de16b9dcdf651fb5f9686860155.tar.bz2 otp-c2535851c84a2de16b9dcdf651fb5f9686860155.zip |
OTP-8609: Problems processing netscape cookies - expire
OTP-8610: Problem processing netscape cookies - date
OTP-8624: Documented debug options not handled
Diffstat (limited to 'lib/inets/src/http_server/httpd_sup.erl')
-rw-r--r-- | lib/inets/src/http_server/httpd_sup.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/inets/src/http_server/httpd_sup.erl b/lib/inets/src/http_server/httpd_sup.erl index 3399f78b53..1507c6852a 100644 --- a/lib/inets/src/http_server/httpd_sup.erl +++ b/lib/inets/src/http_server/httpd_sup.erl @@ -185,14 +185,14 @@ httpd_child_spec(ConfigFile, AcceptTimeout, Debug) -> httpd_child_spec(Config, AcceptTimeout, Debug, Addr, 0) -> case start_listen(Addr, 0, Config) of {Pid, {NewPort, NewConfig, ListenSocket}} -> - Name = {httpd_instance_sup, Addr, NewPort}, + Name = {httpd_instance_sup, Addr, NewPort}, StartFunc = {httpd_instance_sup, start_link, [NewConfig, AcceptTimeout, {Pid, ListenSocket}, Debug]}, - Restart = permanent, - Shutdown = infinity, - Modules = [httpd_instance_sup], - Type = supervisor, + Restart = permanent, + Shutdown = infinity, + Modules = [httpd_instance_sup], + Type = supervisor, {Name, StartFunc, Restart, Shutdown, Type, Modules}; {Pid, {error, Reason}} -> exit(Pid, normal), |