summaryrefslogtreecommitdiff
path: root/src/enquiry.c
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2018-05-26 05:29:30 +0200
committerGuillem Jover <guillem@debian.org>2018-07-24 14:51:52 +0200
commit6e5bd738efef1a0de4268ad12d87c27dfe91a687 (patch)
tree8bc4e03d462907f7899e793251635b594fc39516 /src/enquiry.c
parentd9bc580a419232420abb9620638cfbfe74943ff2 (diff)
downloaddpkg-6e5bd738efef1a0de4268ad12d87c27dfe91a687.tar.gz
Use Synopsis instead of Summary for the short Description
This unifies the term with the rest of the codebase, and makes it more descriptive.
Diffstat (limited to 'src/enquiry.c')
-rw-r--r--src/enquiry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/enquiry.c b/src/enquiry.c
index 6182fce7f..e309f5516 100644
--- a/src/enquiry.c
+++ b/src/enquiry.c
@@ -169,7 +169,7 @@ static void describebriefly(struct pkginfo *pkg) {
l= strlen(pkg->set->name);
if (l>20) maxl -= (l-20);
- pdesc = pkgbin_summary(pkg, &pkg->installed, &l);
+ pdesc = pkgbin_synopsis(pkg, &pkg->installed, &l);
l = min(l, maxl);
printf(" %-20s %.*s\n", pkg_name(pkg, pnaw_nonambig), l, pdesc);