diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | resolv/res_hconf.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 2d6f383b90..989087228c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-06-23 Dmitry V. Levin <ldv@altlinux.org> + + * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix typo + in comment. + 2015-06-22 Joseph Myers <joseph@codesourcery.com> [BZ #16353] diff --git a/resolv/res_hconf.c b/resolv/res_hconf.c index b9c229d24a..c9642ce583 100644 --- a/resolv/res_hconf.c +++ b/resolv/res_hconf.c @@ -421,7 +421,7 @@ _res_hconf_reorder_addrs (struct hostent *hp) /* Get lock. */ __libc_lock_lock (lock); - /* Recheck, somebody else might have done the work by done. */ + /* Recheck, somebody else might have done the work by now. */ if (num_ifs <= 0) { int new_num_ifs = 0; |