diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-07-08 02:14:57 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-07-08 02:14:57 +0000 |
commit | 21b9280cf516045f3ffb7d5249087a127855a38d (patch) | |
tree | 66604f5931a8cb70a88536893488ab74a20064a8 /source3/libads | |
parent | 363de3ca121b21a55457034648194f16fc2dc72f (diff) | |
download | samba-21b9280cf516045f3ffb7d5249087a127855a38d.tar.gz samba-21b9280cf516045f3ffb7d5249087a127855a38d.tar.bz2 samba-21b9280cf516045f3ffb7d5249087a127855a38d.zip |
Kill off const warnings - add a pile of const to various places.
(This used to be commit 1de04ec4735c19ec21cdef6e679cea17c734c5f6)
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap_user.c b/source3/libads/ldap_user.c index d0b6c2ca8c..b6e3d189c5 100644 --- a/source3/libads/ldap_user.c +++ b/source3/libads/ldap_user.c @@ -43,7 +43,7 @@ ADS_STATUS ads_add_user_acct(ADS_STRUCT *ads, const char *user, TALLOC_CTX *ctx; ADS_MODLIST mods; ADS_STATUS status; - char *upn, *new_dn, *name, *controlstr; + const char *upn, *new_dn, *name, *controlstr; const char *objectClass[] = {"top", "person", "organizationalPerson", "user", NULL}; |