style fixes

pull/503/head
Rick V 5 years ago
parent bff7087ca4
commit f9a9150f4b
No known key found for this signature in database
GPG Key ID: C0EDC8723FDC3465

@ -47,21 +47,13 @@ url_t *url_parsed;
free(url_parsed);
}
parse_url(url, verify_host, parsed_url)
parse_url(url, verify_host, parsed_url)
char *url;
bool verify_host;
url_t *parsed_url;
{
char *local_url;
char *token;
char *token_host;
char *host_port;
char *host_ip;
char *token_ptr;
char *host_token_ptr;
char *path = NULL;
char *local_url, *token, *token_host, *host_port, *host_ip, *token_ptr;
char *host_token_ptr, *path = NULL;
/* Copy our string */
local_url = strdup(url);
@ -71,7 +63,7 @@ url_t *parsed_url;
/* Host:Port */
token = strtok_r(NULL, "/", &token_ptr);
if (token)
if (token)
host_port = strdup(token);
else
host_port = (char *) calloc(1, sizeof(char));
@ -138,4 +130,4 @@ url_t *parsed_url;
free(local_url);
free(host_port);
return 0;
}
}

Loading…
Cancel
Save