summaryrefslogtreecommitdiff
path: root/source3/include/tldap.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-06-07 11:44:37 +0200
committerVolker Lendecke <vl@samba.org>2009-06-07 11:50:48 +0200
commitd8f331778f6f3756becf9f7974cf2e95d3a04525 (patch)
tree67693e36b7f4717a5a6910f00ab144b9d89082c4 /source3/include/tldap.h
parent35492ada90f691757f014fcde0353717800d0bd2 (diff)
downloadsamba-d8f331778f6f3756becf9f7974cf2e95d3a04525.tar.gz
samba-d8f331778f6f3756becf9f7974cf2e95d3a04525.tar.bz2
samba-d8f331778f6f3756becf9f7974cf2e95d3a04525.zip
req_del and req_abandon are ASN1_APPLICATION_SIMPLE
Ok, ASN1_APPLICATION everywhere was too easy :-)
Diffstat (limited to 'source3/include/tldap.h')
-rw-r--r--source3/include/tldap.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/include/tldap.h b/source3/include/tldap.h
index 9ce5c8bfa8..c79a142654 100644
--- a/source3/include/tldap.h
+++ b/source3/include/tldap.h
@@ -158,13 +158,15 @@ const char *tldap_err2string(int rc);
#define TLDAP_RES_MODIFY (7 + 0x60)
#define TLDAP_REQ_ADD (8 + 0x60)
#define TLDAP_RES_ADD (9 + 0x60)
-#define TLDAP_REQ_DELETE (10 + 0x60)
+/* ASN1_APPLICATION_SIMPLE instead of ASN1_APPLICATION */
+#define TLDAP_REQ_DELETE (10 + 0x40)
#define TLDAP_RES_DELETE (11 + 0x60)
#define TLDAP_REQ_MODDN (12 + 0x60)
#define TLDAP_RES_MODDN (13 + 0x60)
#define TLDAP_REQ_COMPARE (14 + 0x60)
#define TLDAP_RES_COMPARE (15 + 0x60)
-#define TLDAP_REQ_ABANDON (16 + 0x60)
+/* ASN1_APPLICATION_SIMPLE instead of ASN1_APPLICATION */
+#define TLDAP_REQ_ABANDON (16 + 0x40)
#define TLDAP_RES_SEARCH_REFERENCE (19 + 0x60)
#define TLDAP_REQ_EXTENDED (23 + 0x60)
#define TLDAP_RES_EXTENDED (24 + 0x60)