Skip to content
Snippets Groups Projects
Commit bcce78c6 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Double the max-length of internal codes, prefixes, and suffixes

So extended internal codes (e.g. for msg and file areas) now have a max length
of 32 chars (16 prefix, 16 suffix) and most other internal codes are now
limited to 16 chars (instead of 8).
parent aecc87df
No related branches found
No related tags found
No related merge requests found
...@@ -92,8 +92,7 @@ ...@@ -92,8 +92,7 @@
#define LEN_DIR 63 /* Maximum length of directory paths */ #define LEN_DIR 63 /* Maximum length of directory paths */
#define LEN_CMD 63 /* Maximum length of command lines */ #define LEN_CMD 63 /* Maximum length of command lines */
/* MS-DOS limited values */ #define LEN_CODE 16 /* Maximum length of internal codes */
#define LEN_CODE 8 /* Maximum length of internal codes */
#define LEN_QWKID 8 /* Maximum length of QWK-ID */ #define LEN_QWKID 8 /* Maximum length of QWK-ID */
#define LEN_MODNAME 8 /* Maximum length of loadable module name */ #define LEN_MODNAME 8 /* Maximum length of loadable module name */
#define LEN_SIFNAME 8 /* Maximum length of SIF filename */ #define LEN_SIFNAME 8 /* Maximum length of SIF filename */
......
...@@ -486,7 +486,7 @@ void msgs_cfg() ...@@ -486,7 +486,7 @@ void msgs_cfg()
"constructed from a combination of the prefix and the specified code \n" "constructed from a combination of the prefix and the specified code \n"
"suffix for each sub-board.\n" "suffix for each sub-board.\n"
"\n" "\n"
"Code prefixes may contain up to 8 legal filename characters.\n" "Code prefixes may contain up to 16 legal filename characters.\n"
"\n" "\n"
"Code prefixes should be unique among the message groups on the system.\n" "Code prefixes should be unique among the message groups on the system.\n"
"\n" "\n"
......
...@@ -252,7 +252,7 @@ void xfer_cfg() ...@@ -252,7 +252,7 @@ void xfer_cfg()
"constructed from a combination of the prefix and the specified code\n" "constructed from a combination of the prefix and the specified code\n"
"suffix for each directory.\n" "suffix for each directory.\n"
"\n" "\n"
"Code prefixes may contain up to 8 legal filename characters.\n" "Code prefixes may contain up to 16 legal filename characters.\n"
"\n" "\n"
"Code prefixes should be unique among the file libraries on the system.\n" "Code prefixes should be unique among the file libraries on the system.\n"
"\n" "\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment