]> git.sur5r.net Git - openldap/commitdiff
Delete unused source
authorHoward Chu <hyc@openldap.org>
Sun, 30 Mar 2003 04:01:31 +0000 (04:01 +0000)
committerHoward Chu <hyc@openldap.org>
Sun, 30 Mar 2003 04:01:31 +0000 (04:01 +0000)
servers/slapd/back-ldbm/Makefile.in
servers/slapd/back-ldbm/sasl.c [deleted file]

index 9d6d9e5a096cb411af0f8593bd8e3e6c644304f1..c070a975d6203f07e447ef82830eb126864fa11e 100644 (file)
@@ -4,13 +4,13 @@ SRCS = idl.c add.c search.c cache.c dbcache.c dn2id.c entry.c \
                id2entry.c index.c id2children.c nextid.c \
                compare.c modify.c modrdn.c delete.c init.c \
                config.c bind.c attr.c filterindex.c close.c \
-               alias.c tools.c key.c extended.c passwd.c sasl.c \
+               alias.c tools.c key.c extended.c passwd.c \
                referral.c operational.c
 OBJS = idl.lo add.lo search.lo cache.lo dbcache.lo dn2id.lo entry.lo \
                id2entry.lo index.lo id2children.lo nextid.lo \
                compare.lo modify.lo modrdn.lo delete.lo init.lo \
                config.lo bind.lo attr.lo filterindex.lo close.lo \
-               alias.lo tools.lo key.lo extended.lo passwd.lo sasl.lo \
+               alias.lo tools.lo key.lo extended.lo passwd.lo \
                referral.lo operational.lo $(@BUILD_LDBM@_OBJS)
 
 LDAP_INCDIR= ../../../include       
diff --git a/servers/slapd/back-ldbm/sasl.c b/servers/slapd/back-ldbm/sasl.c
deleted file mode 100644 (file)
index ae8d05c..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/* bind.c - ldbm backend bind and unbind routines */
-/* $OpenLDAP$ */
-/*
- * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
- */
-
-
-#include "portable.h"
-
-#if 0
-
-#include <stdio.h>
-
-#include <ac/krb.h>
-#include <ac/socket.h>
-#include <ac/string.h>
-#include <ac/unistd.h>
-
-#include "slap.h"
-#include "back-ldbm.h"
-#include "proto-back-ldbm.h"
-
-int
-back_ldbm_sasl_authorize(
-       BackendDB *be,
-       const char *auth_identity,
-       const char *requested_user,
-       const char **user,
-       const char **errstring)
-{
-       return SASL_FAIL;
-}
-
-int
-back_ldbm_sasl_getsecret(
-       Backend *be,
-       const char *mechanism,
-       const char *auth_identity,
-       const char *realm,
-       sasl_secret_t **secret)
-{
-       return SASL_FAIL;
-}
-
-int
-back_ldbm_sasl_putsecret(
-       Backend *be,
-       const char *mechanism,
-       const char *auth_identity,
-       const char *realm,
-       const sasl_secret_t *secret)
-{
-       return SASL_FAIL;
-}
-
-#else
-static int dummy = 1;
-#endif
-