diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-05-29 18:42:40 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-05-29 18:42:40 +0200 |
commit | 8d76eea87b29369c2ca70a95f0dc5c63b879a44f (patch) | |
tree | 5b92cd549f865e884918ef977506047aa4ff7085 /src/network | |
parent | 8c35b2ca15a9194412c95ba594712b0d5fe25a64 (diff) | |
parent | 49174f75514bf1033dd6916176a551a923b77dc5 (diff) |
Merge pull request #3378 from keszybz/unit-write-drop-in-newline-removal
Remove newlines from drop in format strings + some formatting fixes
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/networkd-link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c index 0d9d228796..9ac0b47d77 100644 --- a/src/network/networkd-link.c +++ b/src/network/networkd-link.c @@ -2170,7 +2170,7 @@ static int link_set_ipv6_accept_ra(Link *link) { p = strjoina("/proc/sys/net/ipv6/conf/", link->ifname, "/accept_ra"); - /* We handle router advertisments ourselves, tell the kernel to GTFO */ + /* We handle router advertisements ourselves, tell the kernel to GTFO */ r = write_string_file(p, "0", WRITE_STRING_FILE_VERIFY_ON_FAILURE); if (r < 0) log_link_warning_errno(link, r, "Cannot disable kernel IPv6 accept_ra for interface: %m"); |