Changeset 79d95448a9dd48c8273255be90945acfe53043d4

Show
Ignore:
Timestamp:
03/18/10 16:10:12 (4 months ago)
Author:
Matthias -apoc- Hecker <apoc@…>
Children:
f00ee3ba88882bddeb21850ed1bd97b5416ea280
Parents:
904106997bab0ea9894516ae324af6f3538ccf24
git-committer:
Matthias -apoc- Hecker <apoc@sixserv.org> 1268917812 +0100
Message:

Small httputil.rb fix. Wrong Argument port instead of pass.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lib/rbot/core/utils/httputil.rb

    r9621842 r79d9544  
    390390    end 
    391391 
    392     h = Net::HTTP.new(uri.host, uri.port, proxy_host, proxy_port, proxy_user, proxy_port) 
     392    h = Net::HTTP.new(uri.host, uri.port, proxy_host, proxy_port, proxy_user, proxy_pass) 
    393393    h.use_ssl = true if uri.scheme == "https" 
    394394