зеркало из https://github.com/mozilla/pjs.git
60 строки
1.5 KiB
C
60 строки
1.5 KiB
C
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
/*
|
|
* Copyright (c) 1990 Regents of the University of Michigan.
|
|
* All rights reserved.
|
|
*/
|
|
/*
|
|
* reslist.c
|
|
*/
|
|
|
|
#if 0
|
|
#ifndef lint
|
|
static char copyright[] = "@(#) Copyright (c) 1990 Regents of the University of Michigan.\nAll rights reserved.\n";
|
|
#endif
|
|
#endif
|
|
|
|
#include "ldap-int.h"
|
|
|
|
LDAPMessage *
|
|
ldap_delete_result_entry( LDAPMessage **list, LDAPMessage *e )
|
|
{
|
|
LDAPMessage *tmp, *prev = NULL;
|
|
|
|
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 )
|
|
{
|
|
e->lm_chain = *list;
|
|
*list = e;
|
|
}
|