diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2005-08-16 21:34:11 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2005-08-16 21:34:11 +0000 |
commit | 95d563a3c2d7e201cb8e541621269420b191fa15 (patch) | |
tree | c9edda9216b33d5257ea646efce64cbb60c39ff5 | |
parent | b2677c3e8df8044ff7c931b723cc25a1cb568ea6 (diff) |
unsafe operations -> potentially unsafe operations
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/Update.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/Update.pm b/usr.sbin/pkg_add/OpenBSD/Update.pm index 75bbf49b7ea..9a0aa61ead3 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.54 2005/08/16 18:37:06 espie Exp $ +# $OpenBSD: Update.pm,v 1.55 2005/08/16 21:34:10 espie Exp $ # # Copyright (c) 2004 Marc Espie <espie@openbsd.org> # @@ -277,7 +277,7 @@ sub can_do $state->{journal} = []; $plist->visit('can_update', 0, $state); if ($state->{okay} == 0) { - Warn "Old package ", $plist->pkgname(), " contains unsafe operations\n"; + Warn "Old package ", $plist->pkgname(), " contains potentially unsafe operations\n"; for my $i (@{$state->{journal}}) { Warn "\t$i\n"; } @@ -325,7 +325,7 @@ sub is_safe $plist->visit('can_update', 1, $state); if ($state->{okay} == 0) { Warn "New package ", $plist->pkgname(), - " contains unsafe operations\n"; + " contains potentially unsafe operations\n"; for my $i (@{$state->{journal}}) { Warn "\t$i\n"; } |