Browse Source

Fixed bug in handling pipelined asynchronous requests. Bug report by Sean Hinde

pull/16/head
chandrusf 19 years ago
parent
commit
73433b8ddb
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      src/ibrowse_http_client.erl
  2. +1
    -1
      vsn.mk

+ 2
- 2
src/ibrowse_http_client.erl View File

@ -6,7 +6,7 @@
%%% Created : 11 Oct 2003 by Chandrashekhar Mullaparthi <chandrashekhar.mullaparthi@t-mobile.co.uk> %%% Created : 11 Oct 2003 by Chandrashekhar Mullaparthi <chandrashekhar.mullaparthi@t-mobile.co.uk>
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
-module(ibrowse_http_client). -module(ibrowse_http_client).
-vsn('$Id: ibrowse_http_client.erl,v 1.5 2006/03/17 10:05:18 chandrusf Exp $ ').
-vsn('$Id: ibrowse_http_client.erl,v 1.6 2006/05/31 22:02:06 chandrusf Exp $ ').
-behaviour(gen_server). -behaviour(gen_server).
%%-------------------------------------------------------------------- %%--------------------------------------------------------------------
@ -207,7 +207,7 @@ handle_info({{send_req, [Url, Headers, Method,
State_1#state{status = get_header, State_1#state{status = get_header,
cur_req = NewReq}; cur_req = NewReq};
_ -> _ ->
State_1#state{cur_req = NewReq}
State_1
end, end,
case StreamTo of case StreamTo of
undefined -> undefined ->

+ 1
- 1
vsn.mk View File

@ -1,2 +1,2 @@
IBROWSE_VSN = 1.2
IBROWSE_VSN = 1.2.1

Loading…
Cancel
Save