aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
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);
}