]> git.sur5r.net Git - openldap/blob - libraries/libldap/txn.c
Clarify rootdn requirements
[openldap] / libraries / libldap / txn.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 2004-2007 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* ACKNOWLEDGEMENTS:
16  * This program was orignally developed by Kurt D. Zeilenga for inclusion in
17  * OpenLDAP Software.
18  */
19
20 #include "portable.h"
21
22 #include <ac/stdlib.h>
23
24 #include <ac/time.h>
25 #include <ac/string.h>
26
27 #include "ldap-int.h"
28
29 #ifdef LDAP_GROUP_TRANSACTION
30
31 int
32 ldap_txn_create_s(
33         LDAP *ld,
34         struct berval   **cookie,
35         LDAPControl             **sctrls,
36         LDAPControl             **cctrls )
37 {
38         return LDAP_NOT_SUPPORTED;
39 }
40
41 int
42 ldap_txn_end_s(
43         LDAP *ld,
44         struct berval   *cookie,
45         int                             commit,
46         LDAPControl             **sctrls,
47         LDAPControl             **cctrls )
48 {
49         return LDAP_NOT_SUPPORTED;
50 }
51
52 #endif