What changed, and why it matters
This commit simply changes two user-facing text labels from 'Version 3.0' and 'Version 3.1' to 'V3.0' and 'V3.1'. It is a cosmetic string formatting update with no security relevance.
No security action needed; this is a cosmetic UI label change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change modifies the return strings of GetHardwareVersionString() in src/driver/hardware_version.c. Only two literal strings are shortened. There is no change to logic, memory handling, input parsing, authentication, cryptography, or any security-sensitive behavior.
Changed components
src/driver/hardware_version.cInspect captured patch +2 / −2
diff --git a/src/driver/hardware_version.c b/src/driver/hardware_version.c
index 1f4d666..bafa59e 100644
--- a/src/driver/hardware_version.c
+++ b/src/driver/hardware_version.c
@@ -55,9 +55,9 @@ char *GetHardwareVersionString(void)
} else if (version == VERSION_DVT2) {
return "DVT2";
} else if (version == VERSION_V3_0) {
- return "Version 3.0";
+ return "V3.0";
} else if (version == VERSION_V3_1) {
- return "Version 3.1";
+ return "V3.1";
} else {
return "NONE";
}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.