diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2004-05-10 16:28:48 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2004-05-10 16:28:48 +0000 |
commit | 5b56f599e03f5fa7dffdc519a7acfe191c11e124 (patch) | |
tree | bb761af8e25222d2fc0e2fc5d0ddb45bd9514797 /bin/ksh/sh.h | |
parent | aaf0407dce8256a3e5a0f3a9013030f63c939edb (diff) |
double the command line buffer size (1024 -> 2048); ok millert deraadt
Diffstat (limited to 'bin/ksh/sh.h')
-rw-r--r-- | bin/ksh/sh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/sh.h b/bin/ksh/sh.h index 388dae59d12..cbebd9dfe4e 100644 --- a/bin/ksh/sh.h +++ b/bin/ksh/sh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sh.h,v 1.16 2004/02/08 19:18:15 deraadt Exp $ */ +/* $OpenBSD: sh.h,v 1.17 2004/05/10 16:28:47 pvalchev Exp $ */ /* * Public Domain Bourne/Korn shell @@ -357,7 +357,7 @@ typedef INT32 Tflag; #define ISMAGIC(c) ((unsigned char)(c) == MAGIC) #define NOT '!' /* might use ^ (ie, [!...] vs [^..]) */ -#define LINE 1024 /* input line size */ +#define LINE 2048 /* input line size */ #define PATH 1024 /* pathname size (todo: PATH_MAX/pathconf()) */ #define ARRAYMAX 1023 /* max array index */ |