stamp.tm_hour, stamp.tm_min, stamp.tm_sec);
}
else
- curlx_strcopy(e.expire, sizeof(e.expire), UNLIMITED, strlen(UNLIMITED));
+ curlx_strcopy(e.expire, sizeof(e.expire), STRCONST(UNLIMITED));
sc = data->set.hsts_write(data, &e, i, data->set.hsts_write_userp);
*stop = (sc != CURLSTS_OK);
imap_state(data, imapc, IMAP_SERVERGREET);
/* Start off with an response id of '*' */
- curlx_strcopy(imapc->resptag, sizeof(imapc->resptag), "*", 1);
+ curlx_strcopy(imapc->resptag, sizeof(imapc->resptag), STRCONST("*"));
result = imap_multi_statemach(data, done);
}
}
if(softlinebreak) {
- curlx_strcopy(buf, sizeof(buf), "\x3D\x0D\x0A", 3); /* "=\r\n" */
+ curlx_strcopy(buf, sizeof(buf), STRCONST("\x3D\x0D\x0A")); /* =\r\n */
len = 3;
consumed = 0;
}
{
curl_off_t h;
if(seconds <= 0) {
- curlx_strcopy(r, rsize, " ", 7);
+ curlx_strcopy(r, rsize, STRCONST(" "));
return;
}
h = seconds / 3600;
if(y <= 99999)
curl_msnprintf(r, rsize, "%6" FMT_OFF_T "y", y);
else
- curlx_strcopy(r, rsize, ">99999y", 7);
+ curlx_strcopy(r, rsize, STRCONST(">99999y"));
}
}
}
else
curl_msnprintf(buf, buflen, "%s (0x%08lx)", txt, err);
}
-#else
+#else /* !CURL_DISABLE_VERBOSE_STRINGS */
+ (void)txt;
if(err == SEC_E_OK)
- txt = "No error";
+ curlx_strcopy(buf, buflen, STRCONST("No error"));
else
- txt = "Error";
- curlx_strcopy(buf, buflen, txt, strlen(txt));
+ curlx_strcopy(buf, buflen, STRCONST("Error"));
#endif
if(errno != old_errno)