diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-05-02 23:11:13 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-05-02 23:11:13 +0200 |
commit | 03e2fd085c28a087870543b447b5cc45efb280a9 (patch) | |
tree | 32f1156ff03d0756a4c9c78263ab129d608bb14f | |
parent | df55bfac79a982af93a25545ab2eb96e0d54e784 (diff) | |
download | c-ares-03e2fd085c28a087870543b447b5cc45efb280a9.tar.gz c-ares-03e2fd085c28a087870543b447b5cc45efb280a9.tar.bz2 c-ares-03e2fd085c28a087870543b447b5cc45efb280a9.zip |
nroff: fix two syntax mistakes
ares_parse_a_reply and ares_parse_aaaa_reply both had two \fB instead of
\fP
Reported-by: Alexander Klauer
Bug: http://c-ares.haxx.se/mail/c-ares-archive-2013-03/0010.shtml
-rw-r--r-- | ares_parse_a_reply.3 | 2 | ||||
-rw-r--r-- | ares_parse_aaaa_reply.3 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ares_parse_a_reply.3 b/ares_parse_a_reply.3 index 7fd06f9..8db8ed9 100644 --- a/ares_parse_a_reply.3 +++ b/ares_parse_a_reply.3 @@ -22,7 +22,7 @@ ares_parse_a_reply \- Parse a reply to a DNS query of type A .PP .B int ares_parse_a_reply(const unsigned char *\fIabuf\fP, int \fIalen\fP, .B struct hostent **\fIhost\fP, -.B struct ares_addrttl *\fIaddrttls\fB, int *\fInaddrttls\fB); +.B struct ares_addrttl *\fIaddrttls\fP, int *\fInaddrttls\fP); .fi .SH DESCRIPTION The diff --git a/ares_parse_aaaa_reply.3 b/ares_parse_aaaa_reply.3 index 7fdaa68..476a3f1 100644 --- a/ares_parse_aaaa_reply.3 +++ b/ares_parse_aaaa_reply.3 @@ -22,7 +22,7 @@ ares_parse_aaaa_reply \- Parse a reply to a DNS query of type AAAA .PP .B int ares_parse_aaaa_reply(const unsigned char *\fIabuf\fP, int \fIalen\fP, .B struct hostent **\fIhost\fP, -.B struct ares_addr6ttl *\fIaddrttls\fB, int *\fInaddrttls\fB); +.B struct ares_addr6ttl *\fIaddrttls\fP, int *\fInaddrttls\fP); .fi .SH DESCRIPTION The |