1N/A#pragma ident "%Z%%M% %I% %E% SMI"
1N/A
1N/A/*
1N/A * The contents of this file are subject to the Netscape Public
1N/A * License Version 1.1 (the "License"); you may not use this file
1N/A * except in compliance with the License. You may obtain a copy of
1N/A * the License at http://www.mozilla.org/NPL/
1N/A *
1N/A * Software distributed under the License is distributed on an "AS
1N/A * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
1N/A * implied. See the License for the specific language governing
1N/A * rights and limitations under the License.
1N/A *
1N/A * The Original Code is Mozilla Communicator client code, released
1N/A * March 31, 1998.
1N/A *
1N/A * The Initial Developer of the Original Code is Netscape
1N/A * Communications Corporation. Portions created by Netscape are
1N/A * Copyright (C) 1998-1999 Netscape Communications Corporation. All
1N/A * Rights Reserved.
1N/A *
1N/A * Contributor(s):
1N/A */
1N/A/*
1N/A * Copyright (c) 1990 Regents of the University of Michigan.
1N/A * All rights reserved.
1N/A */
1N/A/*
1N/A * reslist.c
1N/A */
1N/A
1N/A#if 0
1N/A#ifndef lint
1N/Astatic char copyright[] = "@(#) Copyright (c) 1990 Regents of the University of Michigan.\nAll rights reserved.\n";
1N/A#endif
1N/A#endif
1N/A
1N/A#include "ldap-int.h"
1N/A
1N/ALDAPMessage *
1N/Aldap_delete_result_entry( LDAPMessage **list, LDAPMessage *e )
1N/A{
1N/A LDAPMessage *tmp, *prev = NULL;
1N/A
1N/A for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
1N/A prev = tmp;
1N/A
1N/A if ( tmp == NULL )
1N/A return( NULL );
1N/A
1N/A if ( prev == NULL )
1N/A *list = tmp->lm_chain;
1N/A else
1N/A prev->lm_chain = tmp->lm_chain;
1N/A tmp->lm_chain = NULL;
1N/A
1N/A return( tmp );
1N/A}
1N/A
1N/Avoid
1N/Aldap_add_result_entry( LDAPMessage **list, LDAPMessage *e )
1N/A{
1N/A e->lm_chain = *list;
1N/A *list = e;
1N/A}