public
Fork of FooBarWidget/passenger
Description: Phusion Passenger (mod_rails)
Homepage: http://www.modrails.com/
Clone URL: git://github.com/judofyr/passenger.git
Replacing \r\n with CRLF
judofyr (author)
Thu Jun 12 10:36:35 -0700 2008
commit  313a7cc649f01b0a42029379b4ba25bda43ee5a4
tree    d625df5455064f008e389b766c0a77d3fdd7a893
parent  e6b5ef6bf554fcb19705e4ed3aed80b4b1512d28
...
64
65
66
67
 
68
69
70
71
 
72
73
74
...
64
65
66
 
67
68
69
70
 
71
72
73
74
0
@@ -64,11 +64,11 @@ protected
0
     
0
     status, headers, body = @app.call(env)
0
     begin
0
- output.write("Status: #{status}\r\n")
0
+ output.write("Status: #{status}#{CRLF}")
0
       headers[X_POWERED_BY] = PASSENGER_HEADER
0
       headers.each do |k, vs|
0
         vs.each do |v|
0
- output.write("#{k}: #{v}\r\n")
0
+ output.write("#{k}: #{v}#{CRLF}")
0
         end
0
       end
0
       output.write(CRLF)

Comments

    No one has commented yet.