Shorten length of array in config_ent to 4

The string array *messages[] in the config_ent structure, which is used
to store configuration data during runtime, has been shortened to have 4
strings, rather than 10, this is due to the fact that it's only used
with indeces IDLEMSG, SESSMSG, DAYMSG and NOLOGINMSG, or a variable with
one of these as a value. These indeces are all symbolic constants with
values 0 through 3, so only 4 members in the array are needed.
This commit is contained in:
Petar Kapris 2020-11-25 17:44:05 +01:00
parent 9869a3657d
commit 37f91bf330

View file

@ -183,7 +183,7 @@ struct config_ent {
int sessmax; int sessmax;
int daymax; int daymax;
int warntime; int warntime;
char *messages[10]; char *messages[4];
}; };
struct config_ent *config[MAXLINES + 1]; struct config_ent *config[MAXLINES + 1];