aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2001-03-26 09:57:26 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2001-03-26 09:57:26 +0000
commit0c8923e54bcdb2d1e1877349b5ba5440944c14ac (patch)
tree26f4ef163199f772df6cdc228c6007cd45afa5d4
parent9d90a8d714159b2e7da1bb088c23dc32e57d9f17 (diff)
downloadsrc-0c8923e54bcdb2d1e1877349b5ba5440944c14ac.tar.gz
src-0c8923e54bcdb2d1e1877349b5ba5440944c14ac.zip
Decapitalise first letter of warning message.
Notes
Notes: svn path=/head/; revision=74809
-rw-r--r--usr.sbin/pkg_install/info/perform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pkg_install/info/perform.c b/usr.sbin/pkg_install/info/perform.c
index a29c9628bdea..be9cca955e59 100644
--- a/usr.sbin/pkg_install/info/perform.c
+++ b/usr.sbin/pkg_install/info/perform.c
@@ -387,7 +387,7 @@ find_pkg(char *db_dir, struct which_head *which_list)
if (!cmp_path(wp->file, itr->name, cwd))
continue;
if (wp->package[0] != '\0') {
- warnx("Both %s and %s claim to have installed %s\n",
+ warnx("both %s and %s claim to have installed %s\n",
wp->package, installed[i], wp->file);
} else {
strlcpy(wp->package, installed[i], PATH_MAX);