From 0ee21bc313f7e64f8f639dd7947d2b24d514dbb2 Mon Sep 17 00:00:00 2001 From: Adam Heath Date: Mon, 1 Jan 2001 08:05:54 +0000 Subject: [PATCH] Use of PKGIOFF macro was checked in prematurely. --- ChangeLog | 5 ++++- lib/parse.c | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2041bd45..c44705b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ -======= +Mon Jan 1 02:04:26 CST 2001 Wichert Akkerman + + * lib/parse.c: Use of PKGIOFF macro was checked in prematurely. + Sat Dec 30 23:08:00 CET 2000 Wichert Akkerman * doc/Makefile.in: add fr to SUBDIRS diff --git a/lib/parse.c b/lib/parse.c index 47129c57..d10e0f68 100644 --- a/lib/parse.c +++ b/lib/parse.c @@ -40,11 +40,11 @@ const struct fieldinfo fieldinfos[]= { /* NB: capitalisation of these strings is important. */ - { "Package", f_name, w_name, PKGIOFF(name) }, + { "Package", f_name, w_name }, { "Essential", f_boolean, w_booleandefno, PKGIFPOFF(essential) }, { "Status", f_status, w_status }, { "Priority", f_priority, w_priority }, - { "Section", f_section, w_section, PKGIOFF(section) }, + { "Section", f_section, w_section }, { "Installed-Size", f_charfield, w_charfield, PKGIFPOFF(installedsize) }, { "Origin", f_charfield, w_charfield, PKGIFPOFF(origin) }, { "Maintainer", f_charfield, w_charfield, PKGIFPOFF(maintainer) }, @@ -53,7 +53,7 @@ const struct fieldinfo fieldinfos[]= { { "Source", f_charfield, w_charfield, PKGIFPOFF(source) }, { "Version", f_version, w_version, PKGIFPOFF(version) }, { "Revision", f_revision, w_null }, - { "Config-Version", f_configversion, w_configversion, PKGIOFF(configversion) }, + { "Config-Version", f_configversion, w_configversion }, { "Replaces", f_dependency, w_dependency, dep_replaces }, { "Provides", f_dependency, w_dependency, dep_provides }, { "Depends", f_dependency, w_dependency, dep_depends }, -- 2.39.5