diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-01-31 20:36:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-31 20:36:20 -0500 |
commit | a38d90c672adf85cc3d164326efd26b361222f48 (patch) | |
tree | 14ca7d4f77ef8e7b7bbfc41e5feade0dad03c420 /src/basic | |
parent | 91d910e386f7b0ada1296994e86ebbd1c8c762dc (diff) | |
parent | 7454aec7ff3797a346fc926aea2dc615fdb97990 (diff) |
Merge pull request #5146 from ssahani/ifname-alias
networkd: Allow ':' in label
This reverts a341dfe563 and takes a slightly different approach: anything is
allowed in network interface labels, but network interface names are verified
as before (i.e. amongst other things, no colons are allowed there).
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/socket-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/socket-util.c b/src/basic/socket-util.c index c882b8a12a..77f81a60ba 100644 --- a/src/basic/socket-util.c +++ b/src/basic/socket-util.c @@ -887,7 +887,7 @@ bool ifname_valid(const char *p) { if ((unsigned char) *p <= 32U) return false; - if (*p == '/') + if (*p == ':' || *p == '/') return false; numeric = numeric && (*p >= '0' && *p <= '9'); |