Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / openldap / dist / servers / slapd / back-monitor / bind.c
blob812e2c435de3138a11fb64e40f24b5f43b2d83d2
1 /* bind.c - monitor backend bind routine */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/back-monitor/bind.c,v 1.17.2.3 2008/02/11 23:26:47 kurt Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2001-2008 The OpenLDAP Foundation.
6 * Portions Copyright 2001-2003 Pierangelo Masarati.
7 * All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
11 * Public License.
13 * A copy of this license is available in file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
17 /* ACKNOWLEDGEMENTS:
18 * This work was initially developed by Pierangelo Masarati for inclusion
19 * in OpenLDAP Software.
22 #include "portable.h"
24 #include <stdio.h>
26 #include <slap.h>
27 #include "back-monitor.h"
30 * At present, only rootdn can bind with simple bind
33 int
34 monitor_back_bind( Operation *op, SlapReply *rs )
36 Debug(LDAP_DEBUG_ARGS, "==> monitor_back_bind: dn: %s\n",
37 op->o_req_dn.bv_val, 0, 0 );
39 if ( be_isroot_pw( op ) ) {
40 return LDAP_SUCCESS;
43 rs->sr_err = LDAP_INVALID_CREDENTIALS;
44 send_ldap_result( op, rs );
46 return rs->sr_err;