/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Margo Seltzer.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
*/
#endif /* LIBC_SCCS and not lint */
#include "db-int.h"
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include "db-ndbm.h"
/* Solaris Kerberos #include "db-dbm.h" */
#include "hash.h"
#include <libintl.h> /* Solaris Kerberos */
/* If the two size fields of datum and DBMT are not equal, then
* casting between structures will result in stack garbage being
* transfered. Has been observed for DEC Alpha OSF, but will handle
* the general case.
*/
#define NEED_COPY
/*
*
* This package provides dbm and ndbm compatible interfaces to DB.
* First are the DBM routines, which call the NDBM routines, and
* the NDBM routines, which call the DB routines.
*/
static void no_open_db __P((void));
int
char *file;
{
(void)kdb2_dbm_close(__cur_db);
return (0);
return (0);
return (-1);
}
{
no_open_db();
return (item);
}
}
{
no_open_db();
return (item);
}
return (kdb2_dbm_firstkey(__cur_db));
}
{
no_open_db();
return (item);
}
return (kdb2_dbm_nextkey(__cur_db));
}
int
{
no_open_db();
return (-1);
}
}
int
{
no_open_db();
return (-1);
}
}
static void
{
/* Solaris Kerberos - dgettext */
"dbm: no open database.\n"));
}
/*
* Returns:
* *DBM on success
* NULL on failure
*/
DBM *
const char *file;
{
}
/*
* Returns:
* Nothing.
*/
void
{
}
/*
* Returns:
* DATUM on success
* NULL on failure
*/
{
int status;
#ifdef NEED_COPY
DBT k, r;
#else
#endif
if (status) {
}
return (retval);
}
/*
* Returns:
* DATUM on success
* NULL on failure
*/
{
int status;
#ifdef NEED_COPY
DBT k, r;
#else
#endif
if (status)
return (retkey);
}
/*
* Returns:
* DATUM on success
* NULL on failure
*/
{
int status;
#ifdef NEED_COPY
DBT k, r;
#else
#endif
if (status)
return (retkey);
}
/*
* Returns:
* 0 on success
* <0 failure
*/
int
{
int status;
#ifdef NEED_COPY
DBT k;
#else
#endif
if (status)
return (-1);
else
return (0);
}
/*
* Returns:
* 0 on success
* <0 failure
* 1 if DBM_INSERT and entry exists
*/
int
int flags;
{
#ifdef NEED_COPY
DBT k, c;
#else
#endif
}
int
{
return (hp->local_errno);
}
int
{
hp->local_errno = 0;
return (0);
}
int
{
}