Module Name: src
Committed By: joerg
Date: Wed Feb 3 19:27:01 UTC 2010
Modified Files:
src/external/bsd/pkg_install/dist/lib: lib.h version.h
Log Message:
Fix enum to prevent crash (PR 42734)
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.11 -r1.2 src/external/bsd/pkg_install/dist/lib/lib.h
cvs rdiff -u -r1.1.1.25 -r1.2 src/external/bsd/pkg_install/dist/lib/version.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/pkg_install/dist/lib/lib.h
diff -u src/external/bsd/pkg_install/dist/lib/lib.h:1.1.1.11 src/external/bsd/pkg_install/dist/lib/lib.h:1.2
--- src/external/bsd/pkg_install/dist/lib/lib.h:1.1.1.11 Wed Feb 3 14:23:51 2010
+++ src/external/bsd/pkg_install/dist/lib/lib.h Wed Feb 3 19:27:01 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: lib.h,v 1.1.1.11 2010/02/03 14:23:51 joerg Exp $ */
+/* $NetBSD: lib.h,v 1.2 2010/02/03 19:27:01 joerg Exp $ */
/* from FreeBSD Id: lib.h,v 1.25 1997/10/08 07:48:03 charnier Exp */
@@ -184,8 +184,8 @@
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 */
Index: src/external/bsd/pkg_install/dist/lib/version.h
diff -u src/external/bsd/pkg_install/dist/lib/version.h:1.1.1.25 src/external/bsd/pkg_install/dist/lib/version.h:1.2
--- src/external/bsd/pkg_install/dist/lib/version.h:1.1.1.25 Wed Feb 3 14:23:59 2010
+++ src/external/bsd/pkg_install/dist/lib/version.h Wed Feb 3 19:27:01 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: version.h,v 1.1.1.25 2010/02/03 14:23:59 joerg Exp $ */
+/* $NetBSD: version.h,v 1.2 2010/02/03 19:27:01 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_ */