diff options
author | Michael Larson <slioch@slioch.vyatta.com> | 2010-08-03 13:48:11 -0700 |
---|---|---|
committer | Michael Larson <slioch@slioch.vyatta.com> | 2010-08-03 13:48:11 -0700 |
commit | df3c80575ea539e560afc3357eb322e3e9df64bf (patch) | |
tree | bcd66fbe16f66ca4c8b4e241cac0873b65e055a7 /src | |
parent | 933251ba20967ea15c02aed9445dc1d5b24cb9e7 (diff) | |
download | vyatta-cfg-df3c80575ea539e560afc3357eb322e3e9df64bf.tar.gz vyatta-cfg-df3c80575ea539e560afc3357eb322e3e9df64bf.zip |
fix for bug 5982.
upped max_length_buffer length from 1024 to 4096.
Should leave open and reassign to mendocino so that a proper string length check can be added to the commit.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/unionfs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/unionfs.h b/src/common/unionfs.h index 7881594..362972e 100644 --- a/src/common/unionfs.h +++ b/src/common/unionfs.h @@ -30,8 +30,8 @@ #define WHITEOUT_DISABLE_FILE ".wh..disable" #define DELETED_NODE ".wh." -#define MAX_LENGTH_DIR_PATH 1024 -#define MAX_LENGTH_HELP_STR 1024 +#define MAX_LENGTH_DIR_PATH 4096 +#define MAX_LENGTH_HELP_STR 4096 boolean value_exists(char *path); |