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 | 6c8b089be852a4a88a053e6ff90c828b7d252eaf (patch) | |
tree | 22e95ffdb0de0d40e5e8bb3e9a5e3e8ca5097cac /lib/webrick | |
parent | 1be869262c8d6342c31c3800420cbab6cd13c55b (diff) | |
download | ruby-6c8b089be852a4a88a053e6ff90c828b7d252eaf.tar.gz ruby-6c8b089be852a4a88a053e6ff90c828b7d252eaf.tar.xz ruby-6c8b089be852a4a88a053e6ff90c828b7d252eaf.zip |
get rid of unusable condition
git-svn-id: http://svn.ruby-lang.org/repos/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 6ff28f4e9..464526d15 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 |