From 87b350e00fe86950cb42d470ecfa6a047fa8df12 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 16 Dec 2009 07:58:01 +0000 Subject: * lib/un.rb (httpd): try to convert port number to integer. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26111 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/un.rb | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index e89334e9a..d1dcb20f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Dec 16 16:57:59 2009 Nobuyoshi Nakada + + * lib/un.rb (httpd): try to convert port number to integer. + Wed Dec 16 11:18:30 2009 WATANABE Hirofumi * configure.in(MINIRUBY): use "$BASERUBY" as a default ruby executable diff --git a/lib/un.rb b/lib/un.rb index cf817cafc..24c6024c7 100644 --- a/lib/un.rb +++ b/lib/un.rb @@ -304,6 +304,7 @@ def httpd |argv, options| require 'webrick' opt = options[:RequestTimeout] and options[:RequestTimeout] = opt.to_i + opt = options[:Port] and (options[:Port] = Integer(opt)) rescue nil unless argv.empty? options[:DocumentRoot] = argv.shift end -- cgit