openldap/libraries/libldap/addentry.c

57 lines
991 B
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/*
1998-12-29 04:53:15 +08:00
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
/* Portions
1998-08-09 08:43:13 +08:00
* Copyright (c) 1990 Regents of the University of Michigan.
* All rights reserved.
*
* addentry.c
*/
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1999-06-03 08:37:44 +08:00
#include <ac/stdlib.h>
1998-10-25 09:41:42 +08:00
#include <ac/ctype.h>
#include <ac/socket.h>
#include <ac/string.h>
#include <ac/time.h>
1998-08-09 08:43:13 +08:00
#include "ldap-int.h"
1998-08-09 08:43:13 +08:00
LDAPMessage *
ldap_delete_result_entry( LDAPMessage **list, LDAPMessage *e )
{
LDAPMessage *tmp, *prev = NULL;
1999-06-22 06:38:00 +08:00
assert( list != NULL );
assert( e != NULL );
1998-08-09 08:43:13 +08:00
for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
prev = tmp;
if ( tmp == NULL )
return( NULL );
if ( prev == NULL )
*list = tmp->lm_chain;
else
prev->lm_chain = tmp->lm_chain;
tmp->lm_chain = NULL;
return( tmp );
}
void
ldap_add_result_entry( LDAPMessage **list, LDAPMessage *e )
{
1999-06-22 06:38:00 +08:00
assert( list != NULL );
assert( e != NULL );
1998-08-09 08:43:13 +08:00
e->lm_chain = *list;
*list = e;
}