aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-status.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/pkg-status.cxx')
-rw-r--r--bpkg/pkg-status.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/bpkg/pkg-status.cxx b/bpkg/pkg-status.cxx
index c5f74d9..8ca2ac7 100644
--- a/bpkg/pkg-status.cxx
+++ b/bpkg/pkg-status.cxx
@@ -19,7 +19,7 @@ namespace bpkg
{
struct package
{
- string name;
+ package_name name;
bpkg::version version; // Empty if unspecified.
shared_ptr<selected_package> selected; // NULL if none selected.
optional<dependency_constraint> constraint; // Version constraint, if any.
@@ -129,7 +129,9 @@ namespace bpkg
cout << '!';
}
- cout << p.name;
+ // If the package name is selected, then print its exact spelling.
+ //
+ cout << (s != nullptr ? s->name : p.name);
if (o.constraint () && p.constraint)
cout << ' ' << *p.constraint;