mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:53:34 +03:00
fix printf-style format strings
This commit is contained in:
parent
ddab9bd2ec
commit
d65cf7889b
9 changed files with 26 additions and 25 deletions
|
|
@ -681,7 +681,8 @@ Curl_cookie_add(struct SessionHandle *data,
|
|||
|
||||
if(c->running)
|
||||
/* Only show this when NOT reading the cookies from a file */
|
||||
infof(data, "%s cookie %s=\"%s\" for domain %s, path %s, expire %d\n",
|
||||
infof(data, "%s cookie %s=\"%s\" for domain %s, path %s, "
|
||||
"expire %" FORMAT_OFF_T "\n",
|
||||
replace_old?"Replaced":"Added", co->name, co->value,
|
||||
co->domain, co->path, co->expires);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue