MINOR: buffer: remove unused bo_add()

We don't need this function anymore.
This commit is contained in:
Willy Tarreau 2018-07-09 10:20:16 +02:00
parent b7b5fe1a14
commit fdabbe243d
1 changed files with 0 additions and 8 deletions

View File

@ -396,14 +396,6 @@ static inline void b_add(struct buffer *b, size_t count)
b->i += count;
}
/* bo_add() : increase the buffer output and length by <count>
* (LEGACY API)
*/
static inline void bo_add(struct buffer *b, size_t count)
{
b->o += count;
}
/* b_set_data() : sets the buffer's length */
static inline void b_set_data(struct buffer *b, size_t len)
{