From 46f8a4b21076f6ee5552c6bd248d162788e977d0 Mon Sep 17 00:00:00 2001 From: Luka Vandervelden Date: Thu, 4 Oct 2018 12:47:57 +0200 Subject: [PATCH] Fixes PATH_MAX having aberrant values. --- core/communication.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/communication.h b/core/communication.h index a246a18..014da69 100644 --- a/core/communication.h +++ b/core/communication.h @@ -16,7 +16,7 @@ #define TMPDIR "/run/ipc/" -#define PATH_MAX BUFSIZ +#define PATH_MAX 4096 #define CONNECTION 0 #define APPLICATION 1