summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-18 05:08:37 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-18 05:08:37 +0000
commitdb2932b38c2aed82d8d6f6381da99b8550631333 (patch)
treed4015c44ea690a1c4fdfecbfef766c3d16677bc3
parent390915616b29ae12c5247ec03fa1ba77e10ec928 (diff)
downloadruby-db2932b38c2aed82d8d6f6381da99b8550631333.tar.gz
ruby-db2932b38c2aed82d8d6f6381da99b8550631333.tar.xz
ruby-db2932b38c2aed82d8d6f6381da99b8550631333.zip
* lib/webrick/httpserver.rb (WEBrick::HTTPServer::unmount): remove
inpect argument from sprintf. [ruby-dev:29039] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10554 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/webrick/httpserver.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9137bd9c6..487dd3a47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jul 18 14:03:02 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * lib/webrick/httpserver.rb (WEBrick::HTTPServer::unmount): remove
+ inpect argument from sprintf. [ruby-dev:29039]
+
Tue Jul 18 10:53:37 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* object.c (rb_cstr_to_dbl): limit out-of-range message.
diff --git a/lib/webrick/httpserver.rb b/lib/webrick/httpserver.rb
index 9441d8466..495be263b 100644
--- a/lib/webrick/httpserver.rb
+++ b/lib/webrick/httpserver.rb
@@ -127,7 +127,7 @@ module WEBrick
end
def unmount(dir)
- @logger.debug(sprintf("unmount %s.", inspect, dir))
+ @logger.debug(sprintf("unmount %s.", dir))
@mount_tab.delete(dir)
end
alias umount unmount