From: Jong Hyuk Choi Date: Tue, 29 Oct 2002 00:00:47 +0000 (+0000) Subject: Removal of servers/slapd/lcup.c X-Git-Tag: NO_SLAP_OP_BLOCKS~827 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3d4a915f2b554f478c0366e8ab91ae3a68a7cbc6;p=openldap Removal of servers/slapd/lcup.c --- diff --git a/servers/slapd/lcup.c b/servers/slapd/lcup.c deleted file mode 100644 index 399f7cfb0c..0000000000 --- a/servers/slapd/lcup.c +++ /dev/null @@ -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 - -#include -#include - -#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