aboutsummaryrefslogtreecommitdiffstats
path: root/man3/cmsg.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-04-05 14:17:54 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-04-05 14:17:54 +0000
commit41798314b69f4ea3af7173f0f3a02b8cb5d9b33d (patch)
treef7e53d4f7141aecd8c58ef1308416d2562cb62bf /man3/cmsg.3
parent9ee19dd5562590464bb2322378018422ff070dcf (diff)
downloadman-pages-41798314b69f4ea3af7173f0f3a02b8cb5d9b33d.tar.gz
Code formatting fixes
Diffstat (limited to 'man3/cmsg.3')
-rw-r--r--man3/cmsg.34
1 files changed, 1 insertions, 3 deletions
diff --git a/man3/cmsg.3 b/man3/cmsg.3
index ad55be69aa..1fe5dda284 100644
--- a/man3/cmsg.3
+++ b/man3/cmsg.3
@@ -135,7 +135,6 @@ option in a received ancillary buffer:
.PP
.RS
.nf
-.ta 8n 16n 32n
struct msghdr msgh;
struct cmsghdr *cmsg;
int *ttlptr;
@@ -151,14 +150,13 @@ for (cmsg = CMSG_FIRSTHDR(&msgh);
received_ttl = *ttlptr;
break;
}
-}
+ }
if (cmsg == NULL) {
/*
* Error: IP_TTL not enabled or small buffer
* or I/O error.
*/
}
-.ta
.fi
.RE
.PP