diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-11-18 21:56:04 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-11-18 21:56:04 +0000 |
commit | f37aa84798f6c24d5dfafdbd68d7599d8611bce8 (patch) | |
tree | 7e05ca3b03e14c59cc1b35f5e04bf6cbad0c4f2c /usr.sbin/pkg_add | |
parent | 12210a4311ec99423609af179ced07e2639f9065 (diff) |
unsafe operations is better than impossible to update, especially since it
can go on anyways.
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/Update.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/Update.pm b/usr.sbin/pkg_add/OpenBSD/Update.pm index 75961b99792..1ea98ed3e84 100644 --- a/usr.sbin/pkg_add/OpenBSD/Update.pm +++ b/usr.sbin/pkg_add/OpenBSD/Update.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: Update.pm,v 1.33 2004/11/18 21:48:02 espie Exp $ +# $OpenBSD: Update.pm,v 1.34 2004/11/18 21:56:03 espie Exp $ # # Copyright (c) 2004 Marc Espie <espie@openbsd.org> # @@ -218,7 +218,7 @@ sub can_do my $plist = OpenBSD::PackingList->from_installation($toreplace); $plist->visit('can_update', 0, $state); if ($state->{okay} == 0) { - Warn "Old package contains impossible to update elements\n"; + Warn "Old package contains unsafe operations\n"; } if ($state->{forced}->{update}) { $state->{okay} = 1; |