]> err.no Git - dpkg/commitdiff
don't harcode 'essential' fieldname in f_boolean convert_string call
authorWichert Akkerman <wakkerma@debian.org>
Wed, 12 Sep 2001 14:37:53 +0000 (14:37 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Wed, 12 Sep 2001 14:37:53 +0000 (14:37 +0000)
lib/fields.c

index 2bcb21cb9d686aed9c7bcc1b3d62621d632f43f3..3eaade804413f801cd37302c25df81305e2ad05d 100644 (file)
@@ -3,6 +3,7 @@
  * fields.c - parsing of all the different fields, when reading in
  *
  * Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
+ * Copyright 2001 Wichert Akkerman
  *
  * This is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as
@@ -129,7 +130,7 @@ void f_boolean(struct pkginfo *pigp, struct pkginfoperfile *pifp,
                const char *filename, int lno, FILE *warnto, int *warncount,
                const char *value, const struct fieldinfo *fip) {
   pifp->essential=
-    *value ? convert_string(filename,lno,_("yes/no in `essential' field"), -1,
+    *value ? convert_string(filename,lno,_("yes/no in boolean field"), -1,
                             warnto,warncount,pigp,
                             value,booleaninfos,NULL)
            : 0;