mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 19:28:40 +09:00
RTCCertificate.cpp: output truncated before the last format character
Fixes compiler warnings when building with GCC 7+
This commit is contained in:
parent
eb98eba938
commit
fb3d16e2db
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ private:
|
|||
char buf[sizeof(randomName) * 2 + 4];
|
||||
PL_strncpy(buf, "CN=", 3);
|
||||
for (size_t i = 0; i < sizeof(randomName); ++i) {
|
||||
snprintf(&buf[i * 2 + 3], 2, "%.2x", randomName[i]);
|
||||
snprintf(&buf[i * 2 + 3], 3, "%.2x", randomName[i]);
|
||||
}
|
||||
buf[sizeof(buf) - 1] = '\0';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue