mirror of
https://github.com/opnsense/src.git
synced 2026-03-28 13:43:12 -04:00
Make sure that -- filemon is at start of a line, so that
it is found as expected.
This commit is contained in:
parent
371f621a11
commit
bedf67ae99
1 changed files with 1 additions and 1 deletions
|
|
@ -169,7 +169,7 @@ filemon_read(FILE *mfp, int fd)
|
|||
if ((fp = fdopen(fd, "r")) == NULL)
|
||||
err(1, "Could not read build monitor file '%d'", fd);
|
||||
|
||||
fprintf(mfp, "-- filemon acquired metadata --\n");
|
||||
fprintf(mfp, "\n-- filemon acquired metadata --\n");
|
||||
|
||||
while (fgets(buf, sizeof(buf), fp)) {
|
||||
fprintf(mfp, "%s", buf);
|
||||
|
|
|
|||
Loading…
Reference in a new issue