Skip to content

Commit 2ed9abe

Browse files
Maxim KonovalovMaxim Konovalov
authored andcommitted
snl.3: escape \n propertly
Reported by: Bruno Silvestre
1 parent 34a2b5b commit 2ed9abe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

share/man/man3/snl.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ main(int ac, char *argv[])
288288
struct nl_parsed_link link = {};
289289
if (!snl_parse_nlmsg(&ss, hdr, &link_parser, &link))
290290
continue;
291-
printf("Link#%u %s mtu %u\n", link.ifi_index, link.ifla_ifname, link.ifla_mtu);
291+
printf("Link#%u %s mtu %u\\n", link.ifi_index, link.ifla_ifname, link.ifla_mtu);
292292
}
293293

294294
return (0);

0 commit comments

Comments
 (0)