libutil: remove extraneous ": " from error messages

Each of the err() family of functions already takes care of that.
This commit is contained in:
Piotr Pawel Stefaniak 2020-06-20 06:10:42 +00:00
parent 0447cda0cb
commit 39c64ed6d1
2 changed files with 4 additions and 4 deletions

View File

@ -108,11 +108,11 @@ gr_lock(void)
if (errno == EWOULDBLOCK) {
errx(1, "the group file is busy");
} else {
err(1, "could not lock the group file: ");
err(1, "could not lock the group file");
}
}
if (fstat(lockfd, &st) == -1)
err(1, "fstat() failed: ");
err(1, "fstat() failed");
if (st.st_nlink != 0)
break;
close(lockfd);

View File

@ -181,7 +181,7 @@ pw_lock(void)
if (errno == EWOULDBLOCK) {
errx(1, "the password db file is busy");
} else {
err(1, "could not lock the passwd file: ");
err(1, "could not lock the passwd file");
}
}
@ -191,7 +191,7 @@ pw_lock(void)
* close and retry.
*/
if (fstat(lockfd, &st) == -1)
err(1, "fstat() failed: ");
err(1, "fstat() failed");
if (st.st_nlink != 0)
break;
close(lockfd);