summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2005-09-27 07:49:05 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2005-09-27 07:49:05 +0000
commita444d3926acd5a590698f34d08e77278973771c6 (patch)
treea9a1abafec6a2f04fd8af5d8f8f61ac23cae872c /usr.sbin/pkg_install
parent8f49385a0ddf2adfa3f95df463d5c55577ffff4c (diff)
Notes
Diffstat (limited to 'usr.sbin/pkg_install')
-rw-r--r--usr.sbin/pkg_install/info/show.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pkg_install/info/show.c b/usr.sbin/pkg_install/info/show.c
index 10f846abb914..3f3a87b58287 100644
--- a/usr.sbin/pkg_install/info/show.c
+++ b/usr.sbin/pkg_install/info/show.c
@@ -305,7 +305,7 @@ show_cksum(const char *title, Package *plist)
else if (p->type == PLIST_FILE) {
snprintf(tmp, FILENAME_MAX, "%s/%s", dir, p->name);
if (!fexists(tmp))
- warnx("%s doesn't exist\n", tmp);
+ warnx("%s doesn't exist", tmp);
else if (p->next && p->next->type == PLIST_COMMENT &&
(strncmp(p->next->name, "MD5:", 4) == 0)) {
char *cp = NULL, buf[33];