diff options
author | Volker Lendecke <vl@samba.org> | 2011-02-10 22:21:19 +0100 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-02-10 23:20:05 +0100 |
commit | efa460e2912f66629df4d916f950ff9e31c6c208 (patch) | |
tree | 8b10b015539e39f110ce8fb93bfeee87303f7d19 /source3/include | |
parent | b524e58f9a37e0e780c998d819fdbac7b3c34fed (diff) | |
download | samba-efa460e2912f66629df4d916f950ff9e31c6c208.tar.gz samba-efa460e2912f66629df4d916f950ff9e31c6c208.tar.bz2 samba-efa460e2912f66629df4d916f950ff9e31c6c208.zip |
s3: Align the args in tldap_modify
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Thu Feb 10 23:20:05 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/tldap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/tldap.h b/source3/include/tldap.h index d1cb57e50e..6bd086b800 100644 --- a/source3/include/tldap.h +++ b/source3/include/tldap.h @@ -131,14 +131,14 @@ struct tevent_req *tldap_modify_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct tldap_context *ld, const char *dn, - int num_mods, struct tldap_mod *mods, + struct tldap_mod *mods, int num_mods, struct tldap_control *sctrls, int num_sctrls, struct tldap_control *cctrls, int num_cctrls); int tldap_modify_recv(struct tevent_req *req); int tldap_modify(struct tldap_context *ld, const char *dn, - int num_mods, struct tldap_mod *mods, + struct tldap_mod *mods, int num_mods, struct tldap_control *sctrls, int num_sctrls, struct tldap_control *cctrls, int num_cctrls); |