diff options
author | 2009-11-24 10:50:18 +0000 | |
---|---|---|
committer | 2009-11-24 10:50:18 +0000 | |
commit | fd7ac7688b1049a526a645e3bc4da41cf2dbd59f (patch) | |
tree | 229bce94ee0190a2685e3fbc4e5f39686089fcc5 | |
parent | do not inform user of !updated packages, they usually don't really care... (diff) | |
download | wireguard-openbsd-fd7ac7688b1049a526a645e3bc4da41cf2dbd59f.tar.xz wireguard-openbsd-fd7ac7688b1049a526a645e3bc4da41cf2dbd59f.zip |
sets that were not solved should still display something...
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/UpdateSet.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/UpdateSet.pm b/usr.sbin/pkg_add/OpenBSD/UpdateSet.pm index c4928588c23..5b215fa729f 100644 --- a/usr.sbin/pkg_add/OpenBSD/UpdateSet.pm +++ b/usr.sbin/pkg_add/OpenBSD/UpdateSet.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: UpdateSet.pm,v 1.27 2009/11/24 10:28:31 espie Exp $ +# $OpenBSD: UpdateSet.pm,v 1.28 2009/11/24 10:50:18 espie Exp $ # # Copyright (c) 2007 Marc Espie <espie@openbsd.org> # @@ -168,6 +168,8 @@ sub short_print } if ($self->newer > 0) { push(@l, join('+', $self->newer_names)); + } elsif ($self->hints > 0) { + push(@l, join('+', $self->hint_names)); } return join('->', @l); } |