Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/pkg_install/dist/lib Fix enum to prevent crash ...



details:   https://anonhg.NetBSD.org/src/rev/e4d6364124ab
branches:  trunk
changeset: 751418:e4d6364124ab
user:      joerg <joerg%NetBSD.org@localhost>
date:      Wed Feb 03 19:27:01 2010 +0000

description:
Fix enum to prevent crash (PR 42734)

diffstat:

 external/bsd/pkg_install/dist/lib/lib.h     |  6 +++---
 external/bsd/pkg_install/dist/lib/version.h |  4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (37 lines):

diff -r 15cbd5c4d709 -r e4d6364124ab external/bsd/pkg_install/dist/lib/lib.h
--- a/external/bsd/pkg_install/dist/lib/lib.h   Wed Feb 03 18:49:23 2010 +0000
+++ b/external/bsd/pkg_install/dist/lib/lib.h   Wed Feb 03 19:27:01 2010 +0000
@@ -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 */
diff -r 15cbd5c4d709 -r e4d6364124ab external/bsd/pkg_install/dist/lib/version.h
--- a/external/bsd/pkg_install/dist/lib/version.h       Wed Feb 03 18:49:23 2010 +0000
+++ b/external/bsd/pkg_install/dist/lib/version.h       Wed Feb 03 19:27:01 2010 +0000
@@ -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_ */



Home | Main Index | Thread Index | Old Index