quick and dirty fix for message maximum length bug
authorPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Wed, 10 Feb 2010 20:11:24 +0000 (15:11 -0500)
committerPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Wed, 10 Feb 2010 20:11:24 +0000 (15:11 -0500)
This happens when we do ustctl --list-markers.

A refactoring to fix this correctly is in progress.

libustcomm/ustcomm.c

index fd5e360e343a7e495330115d060396bdf4179365..4d6a6509dba71ac4a1333034de403930437f25b6 100644 (file)
@@ -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
This page took 0.023367 seconds and 4 git commands to generate.