diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-19 19:05:04 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-19 19:05:04 +0000 |
commit | 43920ad28c013f4b60799893942870ef9f1e9fc9 (patch) | |
tree | 22e95ffdb0de0d40e5e8bb3e9a5e3e8ca5097cac /lib/webrick | |
parent | 1702e82e027aa09f13ad7fcacff94c4291b2ad39 (diff) | |
download | ruby-43920ad28c013f4b60799893942870ef9f1e9fc9.tar.gz |
get rid of unusable condition
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5226 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/webrick')
-rw-r--r-- | lib/webrick/cgi.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/webrick/cgi.rb b/lib/webrick/cgi.rb index 6ff28f4e97..464526d153 100644 --- a/lib/webrick/cgi.rb +++ b/lib/webrick/cgi.rb @@ -41,7 +41,7 @@ module WEBrick @header["status"] ||= @status super end - unless @config[:NPH] or defined?(MOD_RUBY) + unless @config[:NPH] def res.status_line "" end |