gawk

[old] Sed-like interface to the Gopher protocol
Log | Files | Refs | LICENSE

commit 0a2066f7b22c29bd9271762e8f7751bcb5ff2045
parent e326bb8703a35dffd7fe28423c22063ef8883f22
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Thu, 24 Dec 2020 15:15:59 -0800

Increase line sizes

Double the previous 128 character line length to ensure (hopefully)
that there is no issues on that front.

Diffstat:
Mconfig.def.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -1,7 +1,7 @@ /* gawk config.h */ /* default gopher hole (path, host, port): */ -static const char *default_address[] = { "/", "localhost", "70" }; +static const char *default_address[] = { "/", "localhost", "70", NULL }; /* signals to handle */ static const int signals[] = { SIGABRT, SIGCHLD, SIGINT, SIGTERM }; @@ -14,6 +14,6 @@ static const int signals[] = { SIGABRT, SIGCHLD, SIGINT, SIGTERM }; #define MY_ARGV_MAX 12 #define MY_FILTER_MAX 4 #define MY_INPUT_MAX 128 -#define MY_LINE_MAX 128 +#define MY_LINE_MAX 256 #define MY_PATH_MAX 128 #define MY_URL_MAX 72