diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-05-30 15:10:08 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-05-30 15:10:08 +0000 |
commit | 6921c3989cb4a1cc0037e85d8c53f9cbe1f52c26 (patch) | |
tree | bea1b0fa20d5e52b77e755ab7ec7846558f6c3ec /usr.sbin/pkg_add | |
parent | cedcd4e23b346b89ef1ae8e669c95803c19d1f9d (diff) |
fix verbosity.
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r-- | usr.sbin/pkg_add/pkg_delete | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/pkg_delete b/usr.sbin/pkg_add/pkg_delete index 7e75734dced..99631c6d2fa 100644 --- a/usr.sbin/pkg_add/pkg_delete +++ b/usr.sbin/pkg_add/pkg_delete @@ -1,6 +1,6 @@ #!/usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: pkg_delete,v 1.103 2007/05/22 10:47:40 espie Exp $ +# $OpenBSD: pkg_delete,v 1.104 2007/05/30 15:10:07 espie Exp $ # # Copyright (c) 2003-2007 Marc Espie <espie@openbsd.org> # @@ -89,8 +89,8 @@ $state->{not} = $opt_n; # XXX RequiredBy $not = $opt_n; $state->{quick} = $opt_q; -$state->{verbose} = $opt_v >= 2; -$state->{very_verbose} = $opt_v; +$state->{very_verbose} = $opt_v >=2; +$state->{verbose} = $opt_v; $state->{beverbose} = $opt_n || ($opt_v >= 2); $state->{extra} = $opt_c; $state->{dont_run_scripts} = $opt_I; |