]> git.sur5r.net Git - openldap/blob - libraries/libldap/addentry.c
31d85ab5fef5de4ba3ab385636de1feca9d0545a
[openldap] / libraries / libldap / addentry.c
1 /*
2  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5 /*  Portions
6  *  Copyright (c) 1990 Regents of the University of Michigan.
7  *  All rights reserved.
8  *
9  *  addentry.c
10  */
11
12 #include "portable.h"
13
14 #include <stdio.h>
15
16 #include <ac/stdlib.h>
17
18 #include <ac/ctype.h>
19 #include <ac/socket.h>
20 #include <ac/string.h>
21 #include <ac/time.h>
22
23 #include "ldap-int.h"
24
25 LDAPMessage *
26 ldap_delete_result_entry( LDAPMessage **list, LDAPMessage *e )
27 {
28         LDAPMessage     *tmp, *prev = NULL;
29
30         for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
31                 prev = tmp;
32
33         if ( tmp == NULL )
34                 return( NULL );
35
36         if ( prev == NULL )
37                 *list = tmp->lm_chain;
38         else
39                 prev->lm_chain = tmp->lm_chain;
40         tmp->lm_chain = NULL;
41
42         return( tmp );
43 }
44
45 void
46 ldap_add_result_entry( LDAPMessage **list, LDAPMessage *e )
47 {
48         e->lm_chain = *list;
49         *list = e;
50 }