summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Heath <doogie@debian.org>2001-01-01 08:05:54 +0000
committerAdam Heath <doogie@debian.org>2001-01-01 08:05:54 +0000
commit0ee21bc313f7e64f8f639dd7947d2b24d514dbb2 (patch)
treea3ff8123ecf52158431032e80ce92df3cf4b6bc7
parente83c5b70e433ec12ac1d9c6b5a742d3bfb58a2c7 (diff)
downloaddpkg-0ee21bc313f7e64f8f639dd7947d2b24d514dbb2.tar.gz
Use of PKGIOFF macro was checked in prematurely.
-rw-r--r--ChangeLog5
-rw-r--r--lib/parse.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 2041bd45c..c44705b9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-=======
+Mon Jan 1 02:04:26 CST 2001 Wichert Akkerman <wakkerma@debian.org>
+
+ * lib/parse.c: Use of PKGIOFF macro was checked in prematurely.
+
Sat Dec 30 23:08:00 CET 2000 Wichert Akkerman <wakkerma@debian.org>
* doc/Makefile.in: add fr to SUBDIRS
diff --git a/lib/parse.c b/lib/parse.c
index 47129c578..d10e0f68f 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 },