From 20acb58a38a605cab1b17c0b3379e43cf09b40a6 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 11 Sep 2017 09:27:06 +0200 Subject: code style: use space after semicolon --- lib/hash.c | 2 +- lib/http.c | 3 ++- lib/telnet.c | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/hash.c b/lib/hash.c index 3220d4493..c99b1b699 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -300,7 +300,7 @@ Curl_hash_next_element(struct curl_hash_iterator *iter) /* If we have reached the end of the list, find the next one */ if(!iter->current_element) { - for(i = iter->slot_index;i < h->slots;i++) { + for(i = iter->slot_index; i < h->slots; i++) { if(h->table[i].head) { iter->current_element = h->table[i].head; iter->slot_index = i + 1; diff --git a/lib/http.c b/lib/http.c index 133c8e3c6..8dfea7b70 100644 --- a/lib/http.c +++ b/lib/http.c @@ -172,6 +172,7 @@ CURLcode Curl_http_setup_conn(struct connectdata *conn) return CURLE_OK; } + /* * checkProxyHeaders() checks the linked list of custom proxy headers * if proxy headers are not available, then it will lookup into http header @@ -1321,7 +1322,7 @@ Curl_compareheader(const char *headerline, /* line to check */ clen = strlen(content); /* length of the word to find */ /* find the content string in the rest of the line */ - for(;len >= clen;len--, start++) { + for(; len >= clen; len--, start++) { if(strncasecompare(start, content, clen)) return TRUE; /* match! */ } diff --git a/lib/telnet.c b/lib/telnet.c index fbb822ebc..a7bed3da1 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -295,7 +295,7 @@ static void negotiate(struct connectdata *conn) int i; struct TELNET *tn = (struct TELNET *) conn->data->req.protop; - for(i = 0;i < CURL_NTELOPTS;i++) { + for(i = 0; i < CURL_NTELOPTS; i++) { if(i == CURL_TELOPT_ECHO) continue; @@ -792,7 +792,7 @@ static void printsub(struct Curl_easy *data, case CURL_TELOPT_NEW_ENVIRON: if(pointer[1] == CURL_TELQUAL_IS) { infof(data, " "); - for(i = 3;i < length;i++) { + for(i = 3; i < length; i++) { switch(pointer[i]) { case CURL_NEW_ENV_VAR: infof(data, ", "); @@ -967,7 +967,7 @@ static void suboption(struct connectdata *conn) CURL_TELQUAL_IS); len = 4; - for(v = tn->telnet_vars;v;v = v->next) { + for(v = tn->telnet_vars; v; v = v->next) { tmplen = (strlen(v->data) + 1); /* Add the variable only if it fits */ if(len + tmplen < (int)sizeof(temp)-6) { -- cgit v1.2.3