aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>2022-02-14 18:16:43 +0000
committerWolfram Schneider <wosch@FreeBSD.org>2022-02-14 18:16:43 +0000
commita9a43945d36ac0ecc21b00298963786e7e267d39 (patch)
treee25bdddd8de5a62a0719182d0425e5764efea4ae /usr.bin
parent65572cade35a93add2168a7a012f808ac499218b (diff)
downloadsrc-a9a43945d36ac0ecc21b00298963786e7e267d39.tar.gz
src-a9a43945d36ac0ecc21b00298963786e7e267d39.zip
grammar
Reported by: jrtc27
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/locate/locate/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/locate/locate/util.c b/usr.bin/locate/locate/util.c
index aba90b1deda7..953f51a74d13 100644
--- a/usr.bin/locate/locate/util.c
+++ b/usr.bin/locate/locate/util.c
@@ -289,14 +289,14 @@ check_size(char *db)
off_t len;
if (stat(db, &sb) == -1) {
- warnx("the locate database '%s' does not exists.", db);
+ warnx("the locate database '%s' does not exist.", db);
rebuild_message(db);
return(0);
}
len = sb.st_size;
if (len < (2 * NBG)) {
- warnx("the locate database '%s' is less than %d bytes large.", db, (2 * NBG));
+ warnx("the locate database '%s' is smaller than %d bytes large.", db, (2 * NBG));
rebuild_message(db);
return(0);
}