Compare commits

...

2 Commits

Author SHA1 Message Date
Rikus Wessels 2cabb9ff3f
Merge 8d93b6573e into 6b46063eee 2025-08-08 22:43:02 +00:00
Rikus Wessels 8d93b6573e Removed limited string reading 2025-08-09 00:42:54 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ int main(int argc, char **argv)
break;
}
if (sscanf(buf, "(%llu.%llu) %21s %6299s", &sec, &usec, device, afrbuf) != 4) {
if (sscanf(buf, "(%llu.%llu) %s %s", &sec, &usec, device, afrbuf) != 4) {
fprintf(stderr, "incorrect line format in logfile\n");
return 1;
}