MXS-1997: Increase object name length limits

Updated the limits to 1023 characters and documented the old value.
This commit is contained in:
Markus Mäkelä
2018-08-02 22:12:06 +03:00
parent a6afc7fcbd
commit 1f5e23c674
2 changed files with 6 additions and 2 deletions

View File

@ -17,8 +17,8 @@ http://code.google.com/p/inih/
#include <stdlib.h>
#endif
#define MAX_SECTION 50
#define MAX_NAME 50
#define MAX_SECTION 1024
#define MAX_NAME 1024
/* Strip whitespace chars off end of given string, in place. Return s. */
static char* rstrip(char* s)