summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorgrant <grant>2003-02-18 15:45:50 +0000
committergrant <grant>2003-02-18 15:45:50 +0000
commita9660f3252475dce9ffabdc037182fc98920495c (patch)
treef554afa5c266636c8c7f30c585afc8ebd1469b97 /pkgtools
parentb76796dd860415a6a8d25f5daad1d75a8416b113 (diff)
downloadpkgsrc-a9660f3252475dce9ffabdc037182fc98920495c.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;