At 08:24 PM 2/19/2003, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: >There are some 64-bit porting issues on 2.0.44 (mainly in ssl_engine_io.c).. >I've fixed a couple of them, but the problem doesn't seem to be going away >:(. I'll try to post a patch tommorow, unless somebody beats me to it. > >Example : >ssl_engine_io.c:538 inctx->rc = brigade_consume(inctx->bb, block, in, &inl); > >and brigade_consume is defined as : >static apr_status_t brigade_consume(apr_bucket_brigade *bb, apr_read_type_e >block, char *c, apr_size_t *len) > >inl happens to be a 'int' type, and apr_size_t is a 'long'..
I patterned brigade_consume after brigade_read. Personally, I'd like to see inl become apr_size_t, v.s. the alternative.
