summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pkg_install/lib
diff options
context:
space:
mode:
authorhoek <hoek@FreeBSD.org>1998-07-18 22:19:11 +0000
committerhoek <hoek@FreeBSD.org>1998-07-18 22:19:11 +0000
commit77ec90992fd1d73a7b596890af1bda2f4a68a562 (patch)
treed3494428206d60b458498eec589cdf63d93e00de /usr.sbin/pkg_install/lib
parent88f64384b3c27db23da27938d6b183177847abd1 (diff)
downloadFreeBSD-src-77ec90992fd1d73a7b596890af1bda2f4a68a562.zip
FreeBSD-src-77ec90992fd1d73a7b596890af1bda2f4a68a562.tar.gz
Clarify "Cannot delete file as directory" errmessage.
PR: bin/1985
Diffstat (limited to 'usr.sbin/pkg_install/lib')
-rw-r--r--usr.sbin/pkg_install/lib/plist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_install/lib/plist.c b/usr.sbin/pkg_install/lib/plist.c
index 2caf31a..5e4a2e7 100644
--- a/usr.sbin/pkg_install/lib/plist.c
+++ b/usr.sbin/pkg_install/lib/plist.c
@@ -1,6 +1,6 @@
#ifndef lint
static const char rcsid[] =
- "$Id: plist.c,v 1.23 1997/09/02 08:48:47 jkh Exp $";
+ "$Id: plist.c,v 1.24 1997/10/08 07:48:15 charnier Exp $";
#endif
/*
@@ -389,7 +389,7 @@ delete_package(Boolean ign_err, Boolean nukedirs, Package *pkg)
last_file = p->name;
sprintf(tmp, "%s/%s", Where, p->name);
if (isdir(tmp)) {
- warnx("attempting to delete directory `%s' as a file\n"
+ warnx("cannot delete specified file `%s' - it is a directory!\n"
"this packing list is incorrect - ignoring delete request", tmp);
}
else {
@@ -432,7 +432,7 @@ delete_package(Boolean ign_err, Boolean nukedirs, Package *pkg)
case PLIST_DIR_RM:
sprintf(tmp, "%s/%s", Where, p->name);
if (!isdir(tmp)) {
- warnx("attempting to delete file `%s' as a directory\n"
+ warnx("cannot delete specified directory `%s' - it is a file!\n"
"this packing list is incorrect - ignoring delete request", tmp);
}
else {
OpenPOWER on IntegriCloud