Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@
# include <sys/random.h>
#endif

#include "mod/server.mod/server.h" /* RECVLINEMAX */

#ifndef _POSIX_SOURCE
# define _POSIX_SOURCE 1 /* Solaris needs this */
#endif
Expand Down Expand Up @@ -787,7 +789,7 @@ static void mainloop(int toplevel)
{
static int cleanup = 5;
int xx, i, eggbusy = 1;
char buf[8702];
char buf[RECVLINEMAX];

/* Lets move some of this here, reducing the number of actual
* calls to periodic_timers
Expand Down