On Tue, 27 Feb 2001, Cliff Woolley wrote: > Nothing uses the array that gets built. Can anyone think of a reason > I shouldn't delete the array and these two functions?
Alright, they're going away. apr_bucket_insert_type() doesn't even work
right. (The second assignment should be to *newone, not newone.) =-)
const apr_bucket_type_t **newone;
newone = (const apr_bucket_type_t **)apr_array_push(bucket_types);
newone = &type;
--Cliff
