]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_unbind.c
Added return()
[openldap] / servers / slapd / back-tcl / tcl_unbind.c
1 /*
2  * unbind.c - tcl unbind routines
3  *
4  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11
12 #include "portable.h"
13
14 #include <stdio.h>
15
16 #include "slap.h"
17 #include "tcl_back.h"
18
19 int tcl_back_unbind (
20         Backend * be,
21         Connection * conn,
22         Operation * op
23 )
24 {
25         char *command, *suf_tcl, *results;
26         int i, code, err = 0;
27         struct tclinfo *ti = (struct tclinfo *) be->be_private;
28
29         if (ti->ti_unbind == NULL) {
30                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
31                         "unbind not implemented");
32                 return;
33         }
34
35         for ( i = 0; be->be_suffix[i] != NULL; i++ )
36                 ;
37         suf_tcl = Tcl_Merge(i, be->be_suffix);
38
39         command = (char *) ch_malloc (strlen(ti->ti_unbind) + strlen(suf_tcl)
40                 + strlen(conn->c_dn ? conn->c_dn : "") + 64);
41         sprintf(command, "%s UNBIND {%ld} {%s} {%s}",
42                 ti->ti_unbind, op->o_msgid, suf_tcl, conn->c_dn ? conn->c_dn : "");
43         Tcl_Free(suf_tcl);
44
45         ldap_pvt_thread_mutex_lock( &tcl_interpreter_mutex );
46         code = Tcl_GlobalEval(ti->ti_ii->interp, command);
47         results = (char *) strdup(ti->ti_ii->interp->result);
48         ldap_pvt_thread_mutex_unlock( &tcl_interpreter_mutex );
49         free(command);
50
51         if (code != TCL_OK) {
52                 Debug(LDAP_DEBUG_ANY, "tcl_unbind_error: %s\n", results, 0, 0);
53         }
54         return 0;
55 }