https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=290328
Bug ID: 290328
Summary: libxo produces invalid json if locale has decimal
separator set to comma
Product: Base System
Version: Unspecified
Hardware: Any
OS: Any
Status: New
Severity: Affects Many People
Priority: ---
Component: bin
Assignee: [email protected]
Reporter: [email protected]
libxo produces invalid json if locale has decimal separator set to comma
seems like it was fixed once in
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=276304 but is still a thing
example, originally from
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=290089:
---
load makes invalid json if decimal is comma:
> env LANG=de_DE.ISO8859-15 uptime --libxo=json,pretty
{
"uptime-information": {
"time-of-day": "10:38",
"uptime": 255092,
"days": 2,
"hours": 22,
"minutes": 51,
"seconds": 32,
"uptime-human": " 2 days, 22:52,",
"users": 6,
"load-average-1": 0,29,
"load-average-5": 0,42,
"load-average-15": 0,47
}
}
---
--
You are receiving this mail because:
You are the assignee for the bug.