ircd: send: these buffers can be static
This commit is contained in:
parent
b6f271b2aa
commit
5ce6360b72
1 changed files with 2 additions and 2 deletions
|
@ -218,7 +218,7 @@ send_queued_write(rb_fde_t *F, void *data)
|
||||||
static void
|
static void
|
||||||
linebuf_put_msgvbuf(struct MsgBuf *msgbuf, buf_head_t *linebuf, unsigned int capmask, const char *pattern, va_list *va)
|
linebuf_put_msgvbuf(struct MsgBuf *msgbuf, buf_head_t *linebuf, unsigned int capmask, const char *pattern, va_list *va)
|
||||||
{
|
{
|
||||||
char buf[EXT_BUFSIZE];
|
static char buf[EXT_BUFSIZE];
|
||||||
size_t buflen = sizeof(buf);
|
size_t buflen = sizeof(buf);
|
||||||
|
|
||||||
rb_linebuf_newbuf(linebuf);
|
rb_linebuf_newbuf(linebuf);
|
||||||
|
@ -479,7 +479,7 @@ void
|
||||||
sendto_channel_flags(struct Client *one, int type, struct Client *source_p,
|
sendto_channel_flags(struct Client *one, int type, struct Client *source_p,
|
||||||
struct Channel *chptr, const char *pattern, ...)
|
struct Channel *chptr, const char *pattern, ...)
|
||||||
{
|
{
|
||||||
char buf[BUFSIZE];
|
static char buf[BUFSIZE];
|
||||||
va_list args;
|
va_list args;
|
||||||
buf_head_t rb_linebuf_local;
|
buf_head_t rb_linebuf_local;
|
||||||
buf_head_t rb_linebuf_id;
|
buf_head_t rb_linebuf_id;
|
||||||
|
|
Loading…
Reference in a new issue