diff options
author | Stewart Smith <stewart@linux.ibm.com> | 2018-12-03 11:19:36 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2018-12-11 22:37:41 -0600 |
commit | 7ac3a779319015a3a1c6b6f6ef9bbb106dcc9223 (patch) | |
tree | cd64d52cbe4110bb22d463e39494460ef8d63b1b /external | |
parent | 1534ab1dca13403ade020be26989a95156f321e0 (diff) | |
download | skiboot-7ac3a779319015a3a1c6b6f6ef9bbb106dcc9223.zip skiboot-7ac3a779319015a3a1c6b6f6ef9bbb106dcc9223.tar.gz skiboot-7ac3a779319015a3a1c6b6f6ef9bbb106dcc9223.tar.bz2 |
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 <stewart@linux.ibm.com>
Reviewed-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'external')
-rw-r--r-- | external/ffspart/ffspart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/ffspart/ffspart.c b/external/ffspart/ffspart.c index 179ed58..eeee0d4 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 ',' |