9184983183ae28fb543695c54c85bc5396c07e42 |
|
16-May-2016 |
Phil Carmody <phil@dovecot.fi> |
lib: istream - migrate more to i_stream_read_more()
More coccinelle semantic patching, again hand-checked.
git grep 'i_stream_read_data' | sed s/:.*// | \
while read f; do spatch --sp-file istream0.cocci --in-place "$f" ; done
-- 8< --- istream0.cocci ---
@@
expression e1, e2, e3;
@@
- i_stream_read_data(e1, e2, e3, 0)
+ i_stream_read_more(e1, e2, e3)
-- 8< --- end
Signed-off-by: Phil Carmody <phil@dovecot.fi> |