summaryrefslogtreecommitdiff
path: root/source4/libcli/ldap/ldap_ldif.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2004-09-27 14:11:11 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:22 -0500
commit456e2f82e801cbc26898fad20c273b05248ee0d6 (patch)
treefe4a7a814571b96cbc104494122bf6df7b7eff55 /source4/libcli/ldap/ldap_ldif.c
parent718bb5e8ffb04ab48cb5e9c0a7df848212340a57 (diff)
downloadsamba-456e2f82e801cbc26898fad20c273b05248ee0d6.tar.gz
samba-456e2f82e801cbc26898fad20c273b05248ee0d6.tar.bz2
samba-456e2f82e801cbc26898fad20c273b05248ee0d6.zip
r2689: Use consistent naming Del -> Delete
Add delete functionality to ldb simple lda server backend add some const in ldap.h (This used to be commit 5ed9a6eb184f34eb572dd81202237042518ec7cd)
Diffstat (limited to 'source4/libcli/ldap/ldap_ldif.c')
-rw-r--r--source4/libcli/ldap/ldap_ldif.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source4/libcli/ldap/ldap_ldif.c b/source4/libcli/ldap/ldap_ldif.c
index 8fe50b6d08..df912c038a 100644
--- a/source4/libcli/ldap/ldap_ldif.c
+++ b/source4/libcli/ldap/ldap_ldif.c
@@ -3,9 +3,6 @@
LDAP protocol helper functions for SAMBA
Copyright (C) Andrew Tridgell 2004
- Copyright (C) Volker Lendecke 2004
- Copyright (C) Stefan Metzmacher 2004
- Copyright (C) Simo Sorce 2004
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -352,8 +349,8 @@ static struct ldap_message *ldif_read(int (*fgetc_fn)(void *),
}
if (strequal(value.data, "delete")) {
- msg->type = LDAP_TAG_DelRequest;
- msg->r.DelRequest.dn = dn;
+ msg->type = LDAP_TAG_DeleteRequest;
+ msg->r.DeleteRequest.dn = dn;
return msg;
}