From fc811af89061e8d7bda3505e38d8945c238422ff Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 5 Aug 2012 16:17:10 +0200 Subject: [PATCH] Increased shell limit for line length. Yes this is hacky, I'll fix it with a better shell. --- utils/mxsh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/mxsh.cpp b/utils/mxsh.cpp index bc640759..ba0c72ee 100644 --- a/utils/mxsh.cpp +++ b/utils/mxsh.cpp @@ -262,7 +262,7 @@ void get_and_run_command() printf("root@sortix %s # ", getenv("PWD")); fflush(stdout); - const size_t commandsize = 128; + const size_t commandsize = 1024; char command[commandsize + 1]; size_t commandused = 0;