* fhandler_proc.cc (format_proc_cpuinfo): Avoid leading whitespace in model
name.
This commit is contained in:
parent
4c8650efd8
commit
23de77b72b
|
@ -1,3 +1,8 @@
|
||||||
|
2006-01-10 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
* fhandler_proc.cc (format_proc_cpuinfo): Avoid leading whitespace in
|
||||||
|
model name.
|
||||||
|
|
||||||
2006-01-09 Christopher Faylor <cgf@timesys.com>
|
2006-01-09 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* spawn.cc (spawn_guts): Reorganize slightly so that 16 bit check is
|
* spawn.cc (spawn_guts): Reorganize slightly so that 16 bit check is
|
||||||
|
|
|
@ -793,7 +793,7 @@ format_proc_cpuinfo (char *destbuf, size_t maxsize)
|
||||||
type_str,
|
type_str,
|
||||||
family,
|
family,
|
||||||
model,
|
model,
|
||||||
szBuffer,
|
szBuffer + strspn (szBuffer, " "),
|
||||||
stepping,
|
stepping,
|
||||||
brand_id,
|
brand_id,
|
||||||
cpu_count,
|
cpu_count,
|
||||||
|
|
Loading…
Reference in New Issue