--- freem/src/fma_globals.c 2025/03/09 19:14:25 1.4 +++ freem/src/fma_globals.c 2025/03/22 18:43:54 1.5 @@ -1,5 +1,5 @@ /* - * $Id: fma_globals.c,v 1.4 2025/03/09 19:14:25 snw Exp $ + * $Id: fma_globals.c,v 1.5 2025/03/22 18:43:54 snw Exp $ * fmadm - globals * * @@ -24,6 +24,9 @@ * along with FreeM. If not, see . * * $Log: fma_globals.c,v $ + * Revision 1.5 2025/03/22 18:43:54 snw + * Make STRLEN 255 chars and add BIGSTR macro for larger buffers + * * Revision 1.4 2025/03/09 19:14:25 snw * First phase of REUSE compliance and header reformat * @@ -75,7 +78,7 @@ int fma_globals_list (int optc, char **o DIR *dir; struct dirent *ent; - char filename[STRLEN]; + char filename[PATHLEN]; int ct = 0; @@ -92,7 +95,7 @@ int fma_globals_list (int optc, char **o while ((ent = readdir (dir)) != NULL) { - strncpy (filename, ent->d_name, STRLEN - 1); + strncpy (filename, ent->d_name, PATHLEN - 1); if (filename[0] == '^' && filename[1] != '$') { printf (" %s\n", filename); @@ -113,7 +116,7 @@ int fma_globals_examine (int optc, char DIR *dir; struct dirent *ent; - char gpath[STRLEN]; + char gpath[PATHLEN]; int i; int ct = 0; @@ -148,7 +151,7 @@ int fma_globals_examine (int optc, char for (i = fma_base_opt; i < optc; i++) { - snprintf (gpath, STRLEN - 1, "%s/%s", fma_global_path, opts[i]); + snprintf (gpath, PATHLEN - 1, "%s/%s", fma_global_path, opts[i]); gl (gpath, FALSE, FALSE, FALSE, strlen (fma_global_path)); ct++; @@ -160,11 +163,11 @@ int fma_globals_examine (int optc, char while ((ent = readdir (dir)) != NULL) { - strncpy (gpath, ent->d_name, STRLEN - 1); + strncpy (gpath, ent->d_name, PATHLEN - 1); if (gpath[0] == '^' && gpath[1] != '$') { - snprintf (gpath, STRLEN - 1, "%s/%s", fma_global_path, ent->d_name); + snprintf (gpath, PATHLEN - 1, "%s/%s", fma_global_path, ent->d_name); gl (gpath, FALSE, FALSE, FALSE, strlen (fma_global_path)); @@ -186,7 +189,7 @@ int fma_globals_examine (int optc, char int fma_globals_remove (int optc, char **opts) { - char gpath[STRLEN]; + char gpath[PATHLEN]; int i; int ct = 0; int er = 0; @@ -201,7 +204,7 @@ int fma_globals_remove (int optc, char * for (i = fma_base_opt; i < optc; i++) { printf ("%-10s\t", opts[i]); - snprintf (gpath, STRLEN - 1, "%s/%s", fma_global_path, opts[i]); + snprintf (gpath, PATHLEN - 1, "%s/%s", fma_global_path, opts[i]); if (unlink (gpath) == -1) { printf ("[FAIL]\n"); @@ -227,7 +230,7 @@ int fma_globals_verify (int optc, char * DIR *dir; struct dirent *ent; - char gpath[STRLEN]; + char gpath[PATHLEN]; int i; int ct = 0; @@ -261,7 +264,7 @@ int fma_globals_verify (int optc, char * for (i = fma_base_opt; i < optc; i++) { - snprintf (gpath, STRLEN - 1, "%s/%s", fma_global_path, opts[i]); + snprintf (gpath, PATHLEN - 1, "%s/%s", fma_global_path, opts[i]); exstat = 0; gverify (gpath); @@ -277,11 +280,11 @@ int fma_globals_verify (int optc, char * while ((ent = readdir (dir)) != NULL) { - strncpy (gpath, ent->d_name, STRLEN - 1); + strncpy (gpath, ent->d_name, PATHLEN - 1); if (gpath[0] == '^') { - snprintf (gpath, STRLEN - 1, "%s/%s", fma_global_path, ent->d_name); + snprintf (gpath, PATHLEN - 1, "%s/%s", fma_global_path, ent->d_name); exstat = 0; gverify (gpath);