소스 검색

resolv: commentary typo fix

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer 12 년 전
부모
커밋
e3fea65f50
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libc/inet/resolv.c

+ 1 - 1
libc/inet/resolv.c

@@ -2105,7 +2105,7 @@ int gethostbyname_r(const char *name,
 	/* talk to DNS servers */
 	a.buf = buf;
 	/* take into account that at least one address will be there,
-	 * we'll need space of one in_addr + two addr_list[] elems */
+	 * we'll need space for one in_addr + two addr_list[] elems */
 	a.buflen = buflen - ((sizeof(addr_list[0]) * 2 + sizeof(struct in_addr)));
 	a.add_count = 0;
 	packet_len = __dns_lookup(name, T_A, &packet, &a);