summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pkg_install/lib
diff options
context:
space:
mode:
authorjmg <jmg@FreeBSD.org>2005-06-27 17:10:22 +0000
committerjmg <jmg@FreeBSD.org>2005-06-27 17:10:22 +0000
commit2b127a2a33e1b4c188aa31e52336e239b2bfb3f8 (patch)
treeed4fc7aaafdeb6cc9af61d9330763d5ee189ec0c /usr.sbin/pkg_install/lib
parent2fe3f17457c1b0d6017a2df5a74339ddaa4adfe3 (diff)
downloadFreeBSD-src-2b127a2a33e1b4c188aa31e52336e239b2bfb3f8.zip
FreeBSD-src-2b127a2a33e1b4c188aa31e52336e239b2bfb3f8.tar.gz
remove a few uses of the word `really'
Reviewed by: hrs Approved by: re (scottl) MFC after: 1 week
Diffstat (limited to 'usr.sbin/pkg_install/lib')
-rw-r--r--usr.sbin/pkg_install/lib/plist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_install/lib/plist.c b/usr.sbin/pkg_install/lib/plist.c
index 8ab0535..e5aa6dc 100644
--- a/usr.sbin/pkg_install/lib/plist.c
+++ b/usr.sbin/pkg_install/lib/plist.c
@@ -546,7 +546,7 @@ delete_hierarchy(const char *dir, Boolean ign_err, Boolean nukedirs)
cp1 = cp2 = strdup(dir);
if (!fexists(dir)) {
if (!ign_err)
- warnx("%s '%s' doesn't really exist",
+ warnx("%s '%s' doesn't exist",
isdir(dir) ? "directory" : "file", dir);
return !ign_err;
}
@@ -572,7 +572,7 @@ delete_hierarchy(const char *dir, Boolean ign_err, Boolean nukedirs)
return 0;
if (RMDIR(dir) && !ign_err) {
if (!fexists(dir))
- warnx("directory '%s' doesn't really exist", dir);
+ warnx("directory '%s' doesn't exist", dir);
else
return 1;
}
OpenPOWER on IntegriCloud