diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-09-12 09:29:01 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-09-12 13:54:54 +0200 |
commit | 87501e57f1c166cb250111af54e0470ab8b2099c (patch) | |
tree | 5b9f92270e2d31938360675a4753ca0989bcb74a /lib/hostip.c | |
parent | 59813726d1638880494e3675ae8230b6bdd21ee5 (diff) | |
download | curl-87501e57f1c166cb250111af54e0470ab8b2099c.tar.gz |
code style: remove wrong uses of multiple spaces
Closes #1878
Diffstat (limited to 'lib/hostip.c')
-rw-r--r-- | lib/hostip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hostip.c b/lib/hostip.c index 33b49895c..1a18a3ed7 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -306,7 +306,7 @@ fetch_addr(struct connectdata *conn, /* See if its already in our dns cache */ dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1); - if(dns && (data->set.dns_cache_timeout != -1)) { + if(dns && (data->set.dns_cache_timeout != -1)) { /* See whether the returned entry is stale. Done before we release lock */ struct hostcache_prune_data user; |