summaryrefslogtreecommitdiff
path: root/src/enquiry.c
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2011-01-25 21:40:09 +0100
committerGuillem Jover <guillem@debian.org>2011-10-27 04:38:50 +0200
commit9235d163efbe224c11dc95e30c44c54aef2802f1 (patch)
tree4d40278a8621fee61d8bbe3666f349da5e0d16bf /src/enquiry.c
parent358dc84c4537815fab85beca29093d74c9b979cd (diff)
downloaddpkg-9235d163efbe224c11dc95e30c44c54aef2802f1.tar.gz
Switch from pkginfo->name to pkginfo->set->name
Remove now unused struct pkginfo name member.
Diffstat (limited to 'src/enquiry.c')
-rw-r--r--src/enquiry.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/enquiry.c b/src/enquiry.c
index f6e1331fc..56de64da2 100644
--- a/src/enquiry.c
+++ b/src/enquiry.c
@@ -119,13 +119,13 @@ static void describebriefly(struct pkginfo *pkg) {
const char *pdesc;
maxl= 57;
- l= strlen(pkg->name);
+ l= strlen(pkg->set->name);
if (l>20) maxl -= (l-20);
pdesc = pkg_summary(pkg, &l);
l = min(l, maxl);
- printf(" %-20s %.*s\n",pkg->name,l,pdesc);
+ printf(" %-20s %.*s\n", pkg->set->name, l, pdesc);
}
int
@@ -256,9 +256,10 @@ unpackchk(const char *const *argv)
while ((pkg = pkg_db_iter_next(it))) {
if (!yettobeunpacked(pkg,&thissect)) continue;
if (strcasecmp(thissect,se->name)) continue;
- width -= strlen(pkg->name); width--;
+ width -= strlen(pkg->set->name);
+ width--;
if (width < 4) { printf(" ..."); break; }
- printf(" %s",pkg->name);
+ printf(" %s", pkg->set->name);
}
pkg_db_iter_free(it);
putchar('\n');
@@ -434,7 +435,7 @@ predeppackage(const char *const *argv)
varbuf_end_str(&vb);
fprintf(stderr, _("dpkg: cannot see how to satisfy pre-dependency:\n %s\n"),vb.buf);
ohshit(_("cannot satisfy pre-dependencies for %.250s (wanted due to %.250s)"),
- dep->up->name,startpkg->name);
+ dep->up->set->name, startpkg->set->name);
}
pkg->clientdata->istobe= itb_preinstall;
for (dep= pkg->available.depends; dep; dep= dep->next) {