Comment # 4
on bug 12064
from Mikael Kanstrup
(In reply to Michal Labedzki from comment #1)
> I can see there is a problem with "-" (minus). Without minus - works. With
> "_" (let call that lower-case "-" :) ) also works.
:-)
After another look at the sources I found both - and uppercase are invalid
characters:
for (p = name; *p != '\0'; p++)
if (!(g_ascii_islower(*p) || g_ascii_isdigit(*p) || *p == '_' || *p ==
'.'))
I'll upload a patch shortly that replaces ifname with all lowercase characters,
including the conversion to "lower-case "-""
You are receiving this mail because:
- You are watching all bug changes.