diff options
author | joerg <joerg@pkgsrc.org> | 2010-02-03 19:28:30 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-02-03 19:28:30 +0000 |
commit | 6ddc0fa659298e72fc2c937f1ee96d5068c70218 (patch) | |
tree | e41ad06adf6a1138906b1a1bf10a561215d5e3d4 /pkgtools | |
parent | 63ce29418ba6db857096e752c7a486338faa7b68 (diff) | |
download | pkgsrc-6ddc0fa659298e72fc2c937f1ee96d5068c70218.tar.gz |
pkg_install-20100204:
Fix an enum to prevent crashes later (PR 42734)
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/lib/lib.h | 6 | ||||
-rw-r--r-- | pkgtools/pkg_install/files/lib/version.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkg_install/files/lib/lib.h b/pkgtools/pkg_install/files/lib/lib.h index 3acc3fe92be..cedbcfa873d 100644 --- a/pkgtools/pkg_install/files/lib/lib.h +++ b/pkgtools/pkg_install/files/lib/lib.h @@ -1,4 +1,4 @@ -/* $NetBSD: lib.h,v 1.60 2010/02/03 14:20:14 joerg Exp $ */ +/* $NetBSD: lib.h,v 1.61 2010/02/03 19:28:30 joerg Exp $ */ /* from FreeBSD Id: lib.h,v 1.25 1997/10/08 07:48:03 charnier Exp */ @@ -184,8 +184,8 @@ typedef enum bi_ent_t { BI_IGNORE_RECOMMENDED, /* 3 */ BI_USE_ABI_DEPENDS, /* 4 */ BI_LICENSE, /* 5 */ - BI_ENUM_COUNT, /* 6 */ - BI_PKGTOOLS_VERSION /* 7 */ + BI_PKGTOOLS_VERSION, /* 6 */ + BI_ENUM_COUNT /* 7 */ } bi_ent_t; /* Types */ diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h index 59eeb1e72c4..a96a7fa7ebc 100644 --- a/pkgtools/pkg_install/files/lib/version.h +++ b/pkgtools/pkg_install/files/lib/version.h @@ -1,4 +1,4 @@ -/* $NetBSD: version.h,v 1.149 2010/02/03 14:20:14 joerg Exp $ */ +/* $NetBSD: version.h,v 1.150 2010/02/03 19:28:30 joerg Exp $ */ /* * Copyright (c) 2001 Thomas Klausner. All rights reserved. @@ -27,6 +27,6 @@ #ifndef _INST_LIB_VERSION_H_ #define _INST_LIB_VERSION_H_ -#define PKGTOOLS_VERSION 20100203 +#define PKGTOOLS_VERSION 20100204 #endif /* _INST_LIB_VERSION_H_ */ |