Increased shell limit for line length.

Yes this is hacky, I'll fix it with a better shell.
This commit is contained in:
Jonas 'Sortie' Termansen 2012-08-05 16:17:10 +02:00
parent 7d39906acc
commit fc811af890
1 changed files with 1 additions and 1 deletions

View File

@ -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;