Question regarding MAX_STRING_LEN
What is the reasoning behind the defining the max string len to 8k? 
 
/* The default string lengths */
#define MAX_STRING_LEN HUGE_STRING_LEN
#define HUGE_STRING_LEN 8192
 
And do we need to use it for the following:
 
char         error_str[MAX_STRING_LEN];
char         time_str[MAX_STRING_LEN];
 
NetWare does not automatically grow the stack size when needed.

 
Thanks Rich

 

Reply via email to