Removed limited string reading

pull/592/head
Rikus Wessels 2025-08-09 00:42:54 +02:00
parent c24730dcb6
commit 8d93b6573e
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ int main(int argc, char **argv)
break; 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"); fprintf(stderr, "incorrect line format in logfile\n");
return 1; return 1;
} }