]> git.sur5r.net Git - openldap/commitdiff
Removal of servers/slapd/lcup.c
authorJong Hyuk Choi <jongchoi@openldap.org>
Tue, 29 Oct 2002 00:00:47 +0000 (00:00 +0000)
committerJong Hyuk Choi <jongchoi@openldap.org>
Tue, 29 Oct 2002 00:00:47 +0000 (00:00 +0000)
servers/slapd/lcup.c [deleted file]

diff --git a/servers/slapd/lcup.c b/servers/slapd/lcup.c
deleted file mode 100644 (file)
index 399f7cf..0000000
+++ /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 <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