mirror of
https://github.com/sheumann/hush.git
synced 2025-01-05 14:29:56 +00:00
Paul Fox writes:
hi -- working with ifupdown, i've found a couple of buglets -- the wrong string is passed to an error message. paul
This commit is contained in:
parent
d926149d26
commit
fe9b9cdfa5
@ -799,13 +799,13 @@ static struct interfaces_file_t *read_interfaces(char *filename)
|
|||||||
|
|
||||||
currif->address_family = get_address_family(addr_fams, address_family_name);
|
currif->address_family = get_address_family(addr_fams, address_family_name);
|
||||||
if (!currif->address_family) {
|
if (!currif->address_family) {
|
||||||
bb_error_msg("unknown address type \"%s\"", buf);
|
bb_error_msg("unknown address type \"%s\"", address_family_name);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
currif->method = get_method(currif->address_family, method_name);
|
currif->method = get_method(currif->address_family, method_name);
|
||||||
if (!currif->method) {
|
if (!currif->method) {
|
||||||
bb_error_msg("unknown method \"%s\"", buf);
|
bb_error_msg("unknown method \"%s\"", method_name);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user