Changeset 597
- Timestamp:
- 12/01/07 23:02:38 (1 year ago)
- Files:
-
- version_0/lib/protocols/httpcli2.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
version_0/lib/protocols/httpcli2.rb
r596 r597 53 53 54 54 def send_request 55 az = (@args[:authorization] || @authorization)and az = "Authorization: #{az}\r\n"55 az = @args[:authorization] and az = "Authorization: #{az}\r\n" 56 56 57 57 r = [ … … 221 221 def request args 222 222 args[:host_header] = @host_header unless args.has_key?(:host_header) 223 args[:authorization] = @authorization unless args.has_key?(:authorization) 223 224 r = Request.new self, args 224 225 if @closed
