From patchwork Tue Jun 23 09:52:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Dmitry V. Levin" X-Patchwork-Id: 487561 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3E48B140157 for ; Tue, 23 Jun 2015 19:52:35 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=sourceware.org header.i=@sourceware.org header.b=ii9+rFVO; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:references :mime-version:content-type:in-reply-to; q=dns; s=default; b=WXJL vQzYthHTdwWMA2V1cfSk++P6c0xgq1+v1tuQ/koF7GpzTnq+2gF7D0eXCwjbFPdl mEQ7MhfrbgVIGr3WWBYCy72BWni+97AgVbFROi//i6B/ltvBNiJgKhqnibypj/8s ncJdFL678xGUoMsFVRC2tlLVDhnPglg1iSZm6Dk= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:references :mime-version:content-type:in-reply-to; s=default; bh=bLzIMZdG23 plrilMZcz7grNpVb8=; b=ii9+rFVOWCkwhlqe4ZOk66DLDsXsg8GqLoEgZ2gKj4 /37vlxxqIsGF0tBEgylotO3X4PiCdr6u+YXvtX6PqPPtynVJ0+V611hgzpdSifoD oIQ4/PaRZci1Sod4HoivHUDd6691NoUZL0V219blqPPEEqvolUvd1/E7QRzdfruJ A= Received: (qmail 100660 invoked by alias); 23 Jun 2015 09:52:30 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 100646 invoked by uid 89); 23 Jun 2015 09:52:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: pegasus3.altlinux.org Date: Tue, 23 Jun 2015 12:52:25 +0300 From: "Dmitry V. Levin" To: libc-alpha@sourceware.org Subject: [COMMITTED PATCH] _res_hconf_reorder_addrs: fix typo in comment Message-ID: <20150623095225.GA11910@altlinux.org> Mail-Followup-To: libc-alpha@sourceware.org References: <20150619004907.GA11512@altlinux.org> <20150622024908.GN6315@spoyarek.pnq.redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20150622024908.GN6315@spoyarek.pnq.redhat.com> * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix typo in comment. --- ChangeLog | 5 +++++ resolv/res_hconf.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/resolv/res_hconf.c b/resolv/res_hconf.c index b9c229d..c9642ce 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;