aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-04-21 10:16:51 +0100
committerSteve Holme <steve_holme@hotmail.com>2013-04-21 10:27:42 +0100
commit702b0dd408d5e847aad99d44dcd79366c61835eb (patch)
treef2369494040a7dc1b2d3c604f6c0470839b27351 /lib
parente8a9f794f048251f94d59cc1d4ef7e9516b0c4e7 (diff)
url: Tidy up of setstropt_userpwd() parameters
Updated the naming convention of the login parameters to match those of other functions.
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/lib/url.c b/lib/url.c
index 902679537..7a489e60e 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -297,8 +297,8 @@ static CURLcode setstropt(char **charp, char *s)
return CURLE_OK;
}
-static CURLcode setstropt_userpwd(char *option, char **user_storage,
- char **pwd_storage, char **options_storage)
+static CURLcode setstropt_userpwd(char *option, char **userp, char **passwdp,
+ char **optionsp)
{
CURLcode result = CURLE_OK;
char *user = NULL;
@@ -309,28 +309,28 @@ static CURLcode setstropt_userpwd(char *option, char **user_storage,
to clear the existing data */
if(option) {
result = parse_login_details(option, strlen(option),
- (user_storage ? &user : NULL),
- (pwd_storage ? &passwd : NULL),
- (options_storage ? &options : NULL));
+ (userp ? &user : NULL),
+ (passwdp ? &passwd : NULL),
+ (optionsp ? &options : NULL));
}
if(!result) {
/* Store the username part of option if required */
- if(user_storage) {
- Curl_safefree(*user_storage);
- *user_storage = user;
+ if(userp) {
+ Curl_safefree(*userp);
+ *userp = user;
}
/* Store the password part of option if required */
- if(pwd_storage) {
- Curl_safefree(*pwd_storage);
- *pwd_storage = passwd;
+ if(passwdp) {
+ Curl_safefree(*passwdp);
+ *passwdp = passwd;
}
/* Store the options part of option if required */
- if(options_storage) {
- Curl_safefree(*options_storage);
- *options_storage = options;
+ if(optionsp) {
+ Curl_safefree(*optionsp);
+ *optionsp = options;
}
}