MINOR: buffer: Use b_add()/bo_add() instead of accessing b->i/b->o.

Use the newly available functions instead of using the buffer fields directly.
diff --git a/src/cache.c b/src/cache.c
index f66106d..b86d7bd 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -560,7 +560,7 @@
 			si_applet_cant_put(si);
 			goto out;
 		}
-		res->buf->i += len;
+		b_add(res->buf, len);
 		res->total += len;
 		appctx->st0 = HTTP_CACHE_FWD;
 	}