From afeae143ee8d52a1426366a64e45fdba827b2995 Mon Sep 17 00:00:00 2001 From: NicJA Date: Thu, 31 May 2018 05:25:39 +0000 Subject: [PATCH] make sure we have a large enough buffer to hold the output of the print statement git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@55213 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- workbench/network/stacks/AROSTCP/dhcp/client/dhclient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workbench/network/stacks/AROSTCP/dhcp/client/dhclient.c b/workbench/network/stacks/AROSTCP/dhcp/client/dhclient.c index a6442e17db..426a4ce5bb 100644 --- a/workbench/network/stacks/AROSTCP/dhcp/client/dhclient.c +++ b/workbench/network/stacks/AROSTCP/dhcp/client/dhclient.c @@ -184,7 +184,7 @@ int main (argc, argv, envp) SetErrnoPtr(&errno, sizeof(errno)); static TEXT dh_conf[256]; - static TEXT dh_db[256]; + static TEXT dh_db[288]; LONG len; dh_conf[0] = dh_db[0] = '\0'; -- 2.11.4.GIT