diff options
| author | Roy Marples <roy@marples.name> | 2020-06-22 13:08:25 +0100 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2020-06-22 13:08:25 +0100 |
| commit | 7c19dd85e8024a79f0c6a4d3885cbd1fd9ed4bab (patch) | |
| tree | 8891eefe68557b72429985dd9fcf0f951c2d22a8 /src/if.c | |
| parent | d836addaed114a68648dadb09e1efa07f529c57c (diff) | |
| download | dhcpcd-7c19dd85e8024a79f0c6a4d3885cbd1fd9ed4bab.tar.xz | |
linux: ignore unsupported interfaces by default, such as sit0
Diffstat (limited to 'src/if.c')
| -rw-r--r-- | src/if.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -615,6 +615,8 @@ if_discover(struct dhcpcd_ctx *ctx, struct ifaddrs **ifaddrs, } break; default: + if (if_noconf) + active = IF_INACTIVE; if (active) logwarnx("%s: unsupported" " interface type 0x%.2x", |
