From 058a68cbea07bb2b276c12212ea6129f166b2893 Mon Sep 17 00:00:00 2001 From: Pierre-Marc Fournier Date: Wed, 10 Feb 2010 15:11:24 -0500 Subject: [PATCH] quick and dirty fix for message maximum length bug This happens when we do ustctl --list-markers. A refactoring to fix this correctly is in progress. --- libustcomm/ustcomm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libustcomm/ustcomm.c b/libustcomm/ustcomm.c index fd5e360..4d6a650 100644 --- a/libustcomm/ustcomm.c +++ b/libustcomm/ustcomm.c @@ -35,7 +35,7 @@ #define UNIX_PATH_MAX 108 -#define MSG_MAX 1000 +#define MSG_MAX 10000 /* FIXME: ustcomm blocks on message sending, which might be problematic in * some cases. Fix the poll() usage so sends are buffered until they don't -- 2.34.1