diff options
author | Tim Potter <tpot@samba.org> | 2003-07-10 08:27:55 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-07-10 08:27:55 +0000 |
commit | 8d8d85ecd62dba075d90e54ec75da9b1328784fb (patch) | |
tree | b4e48a54769828c38d32141048adbdef8c9b0d87 /source/libads | |
parent | 9302401f543bd3684657b38f046dc52a5a732035 (diff) | |
download | samba-8d8d85ecd62dba075d90e54ec75da9b1328784fb.tar.gz samba-8d8d85ecd62dba075d90e54ec75da9b1328784fb.tar.xz samba-8d8d85ecd62dba075d90e54ec75da9b1328784fb.zip |
Fix shadow parameter warning.
Diffstat (limited to 'source/libads')
-rw-r--r-- | source/libads/ldap_user.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/libads/ldap_user.c b/source/libads/ldap_user.c index 7efe5338f37..e70249dd784 100644 --- a/source/libads/ldap_user.c +++ b/source/libads/ldap_user.c @@ -28,16 +28,16 @@ ADS_STATUS ads_find_user_acct(ADS_STRUCT *ads, void **res, const char *user) { ADS_STATUS status; - char *exp; + char *ldap_exp; const char *attrs[] = {"*", NULL}; char *escaped_user = escape_ldap_string_alloc(user); if (!escaped_user) { return ADS_ERROR(LDAP_NO_MEMORY); } - asprintf(&exp, "(samAccountName=%s)", escaped_user); - status = ads_search(ads, res, exp, attrs); - SAFE_FREE(exp); + asprintf(&ldap_exp, "(samAccountName=%s)", escaped_user); + status = ads_search(ads, res, ldap_exp, attrs); + SAFE_FREE(ldap_exp); SAFE_FREE(escaped_user); return status; } |