From 7ac3a779319015a3a1c6b6f6ef9bbb106dcc9223 Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Mon, 3 Dec 2018 11:19:36 +1100 Subject: ffspart: Increase MAX_LINE to above PATH_MAX Otherwise we saw failures in CI and the ~221 character paths Jankins likes to have. Signed-off-by: Stewart Smith Reviewed-by: Samuel Mendoza-Jonas Signed-off-by: Stewart Smith --- external/ffspart/ffspart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'external') diff --git a/external/ffspart/ffspart.c b/external/ffspart/ffspart.c index 179ed582..eeee0d4d 100644 --- a/external/ffspart/ffspart.c +++ b/external/ffspart/ffspart.c @@ -50,7 +50,7 @@ * Plus \n 40 * Lets do 50. */ -#define MAX_LINE 255 +#define MAX_LINE (PATH_MAX+255) #define MAX_TOCS 10 #define SEPARATOR ',' -- cgit v1.2.1