aboutsummaryrefslogtreecommitdiff
path: root/lib/setopt.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-10-03 14:29:57 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-10-03 22:56:28 +0200
commit249541f12f1b03559faa4f96861fc4e6725e3f16 (patch)
tree5d991423a9150bbcecd12b473b36ea2bbcf319b5 /lib/setopt.c
parent8a00560de2804fa8ab639c6e895ed3a7f1e75efc (diff)
cookies: change argument type for Curl_flush_cookies
The second argument is really a 'bool' so use that and pass in TRUE/FALSE to make it clear. Closes #4455
Diffstat (limited to 'lib/setopt.c')
-rw-r--r--lib/setopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setopt.c b/lib/setopt.c
index f2006cbf4..64c29e333 100644
--- a/lib/setopt.c
+++ b/lib/setopt.c
@@ -752,7 +752,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
}
else if(strcasecompare(argptr, "FLUSH")) {
/* flush cookies to file, takes care of the locking */
- Curl_flush_cookies(data, 0);
+ Curl_flush_cookies(data, FALSE);
}
else if(strcasecompare(argptr, "RELOAD")) {
/* reload cookies from file */