Fixed array bound length

This commit is contained in:
Michiel Broek 2005-08-30 19:49:57 +00:00
parent 847ae7c1c6
commit 8639394cb3
2 changed files with 4 additions and 4 deletions

View File

@ -466,10 +466,10 @@ int EditConnections(FILE *fil)
if (System.aka.zone) {
set_color(CYAN,BLACK);
snprintf(temp, 81, "%3d. %s %s", o+i, status, aka2str(System.aka));
snprintf(temp, 41, "%3d. %s %s", o+i, status, aka2str(System.aka));
} else {
set_color(LIGHTBLUE, BLACK);
snprintf(temp, 81, "%3d.", o+i);
snprintf(temp, 41, "%3d.", o+i);
}
mbse_mvprintw(y, x, temp);
y++;
@ -642,7 +642,7 @@ void DeleteRules(char *filename)
{
DIR *dp;
struct dirent *de;
char temp[128];
char temp[PATH_MAX];
if (strlen(filename) == 0)
return;

View File

@ -337,7 +337,7 @@ int EditTicConnections(FILE *fil)
char pick[12];
sysconnect System;
char status[4];
char temp[41];
char temp[81];
systems = tichdr.syssize / sizeof(sysconnect);
for (;;) {