summaryrefslogtreecommitdiff
path: root/man7/netlink.7
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-12-22 16:40:46 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-12-22 16:40:46 +0000
commit94e9d9febdb3c68f94bcff26002311fa464837df (patch)
tree3a855c552ff4049052ef3cf9dc7c2f68cee7e03e /man7/netlink.7
parent009df872f730972ec53a70652959c7b47c7ece8b (diff)
Replace "-" by "\-" where a real dash is required.
Diffstat (limited to 'man7/netlink.7')
-rw-r--r--man7/netlink.74
1 files changed, 2 insertions, 2 deletions
diff --git a/man7/netlink.7 b/man7/netlink.7
index eae64acb..527da096 100644
--- a/man7/netlink.7
+++ b/man7/netlink.7
@@ -435,10 +435,10 @@ len = recvmsg(fd, &msg, 0);
for (nh = (struct nlmsghdr *) buf; NLMSG_OK (nh, len);
nh = NLMSG_NEXT (nh, len)) {
/* The end of multipart message. */
- if (nh->nlmsg_type == NLMSG_DONE)
+ if (nh\->nlmsg_type == NLMSG_DONE)
return;
- if (nh->nlmsg_type == NLMSG_ERROR)
+ if (nh\->nlmsg_type == NLMSG_ERROR)
/* Do some error handling. */
...