mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
Removal of servers/slapd/lcup.c
This commit is contained in:
parent
3a9229a3e9
commit
3d4a915f2b
1 changed files with 0 additions and 37 deletions
|
|
@ -1,37 +0,0 @@
|
|||
/* lcup.c - lcup operations */
|
||||
/*
|
||||
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
||||
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||||
*/
|
||||
|
||||
#include "portable.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <ac/string.h>
|
||||
#include <ac/socket.h>
|
||||
|
||||
#include "ldap_pvt.h"
|
||||
#include "slap.h"
|
||||
|
||||
#ifdef LDAP_CLIENT_UPDATE
|
||||
|
||||
AttributeName uuid_attr[2];
|
||||
|
||||
int
|
||||
build_uuid_attr()
|
||||
{
|
||||
const char* text;
|
||||
|
||||
uuid_attr[0].an_name.bv_len = 9;
|
||||
uuid_attr[0].an_name.bv_val = "entryUUID";
|
||||
uuid_attr[1].an_name.bv_len = 0;
|
||||
uuid_attr[1].an_name.bv_val = NULL;
|
||||
uuid_attr[0].an_desc = NULL;
|
||||
uuid_attr[0].an_oc = NULL;
|
||||
uuid_attr[1].an_desc = NULL;
|
||||
uuid_attr[1].an_oc = NULL;
|
||||
slap_bv2ad(&uuid_attr[0].an_name, &uuid_attr[0].an_desc, &text);
|
||||
}
|
||||
|
||||
#endif
|
||||
Loading…
Reference in a new issue