summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2003-02-18 15:45:50 +0000
committergrant <grant@pkgsrc.org>2003-02-18 15:45:50 +0000
commit9e16a225ad398e37db86dcdb69889622ae831a90 (patch)
treef554afa5c266636c8c7f30c585afc8ebd1469b97 /pkgtools
parent78751091ad8426f8b8410a06fd644e264a636c6f (diff)
downloadpkgsrc-9e16a225ad398e37db86dcdb69889622ae831a90.tar.gz
correct #ifdef misplacement.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkg_install/files/lib/pkgdb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkg_install/files/lib/pkgdb.c b/pkgtools/pkg_install/files/lib/pkgdb.c
index 4ccd12dda0c..bfe305ff798 100644
--- a/pkgtools/pkg_install/files/lib/pkgdb.c
+++ b/pkgtools/pkg_install/files/lib/pkgdb.c
@@ -1,9 +1,9 @@
-/* $NetBSD: pkgdb.c,v 1.6 2003/02/11 14:40:55 grant Exp $ */
+/* $NetBSD: pkgdb.c,v 1.7 2003/02/18 15:45:50 grant Exp $ */
#if 0
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: pkgdb.c,v 1.6 2003/02/11 14:40:55 grant Exp $");
+__RCSID("$NetBSD: pkgdb.c,v 1.7 2003/02/18 15:45:50 grant Exp $");
#endif
#endif
@@ -209,8 +209,8 @@ pkgdb_remove(const char *key)
/* remove any entry from the cache which has a data field of `pkg' */
int
pkgdb_remove_pkg(const char *pkg)
-#if defined(HAVE_DBOPEN)
{
+#if defined(HAVE_DBOPEN)
DBT data;
DBT key;
int type;