summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/content/fetch.c b/content/fetch.c
index 6f829bb71..1ff925ae3 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -291,13 +291,16 @@ struct fetch * fetch_start(nsurl *url, nsurl *referer,
*/
bool match1;
bool match2;
- if (lwc_string_isequal(scheme, ref_scheme, &match) != lwc_error_ok) {
+ if (lwc_string_isequal(scheme, ref_scheme,
+ &match) != lwc_error_ok) {
match = false;
}
- if (lwc_string_isequal(scheme, fetch_https_lwc, &match1) != lwc_error_ok) {
+ if (lwc_string_isequal(scheme, fetch_https_lwc,
+ &match1) != lwc_error_ok) {
match1 = false;
}
- if (lwc_string_isequal(ref_scheme, fetch_http_lwc, &match2) != lwc_error_ok) {
+ if (lwc_string_isequal(ref_scheme, fetch_http_lwc,
+ &match2) != lwc_error_ok) {
match2= false;
}
if (match == true || (match1 == true && match2 == true))