From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 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 dcvr.yhbt.net (Postfix) with ESMTPS id 3B78F1F45E for ; Wed, 19 Feb 2020 18:09:53 +0000 (UTC) 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:cc:subject:in-reply-to:message-id :references:mime-version:content-type; q=dns; s=default; b=Bqu4k 3xanVa0IfZF70uuzKnmIqH43bbW+KPKBxQoi8EzjYBQX6Z1JmGqKMpG7OG3kd2/K Xe4IIEhBzrFY4o0LxDWfuxr2W8mOKjBcrusTUriCnccbWH6JqkKOYXAxnjYCHM8L sep2/XAzqQfLUUYYAMoBhd+TijNNcsCFdetoAw= 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:cc:subject:in-reply-to:message-id :references:mime-version:content-type; s=default; bh=f/RJXfkqEMT YASppeKCVqtNN9QY=; b=jiKIHjLJannxP98sBchvWsUi27BeNzE3vMt2H8NM6Wm bzjvWi7ezc78RPpVkJjuO8KTE2Ls46WQeOFUVpEYqrvHx+h/di1wvhglQ3JYcdsd TR7f085oynvb54mL+wxTO9NfV5/fZT8aHDHELeh1qPC4LyvU4830Q5hyYvgxWV7U = Received: (qmail 84859 invoked by alias); 19 Feb 2020 18:09:51 -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 Received: (qmail 84850 invoked by uid 89); 19 Feb 2020 18:09:50 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: esa1.mentor.iphmx.com IronPort-SDR: yo+hgjXfGLD1s0BEn3FGq16dvtRkLnO8DkAI2J1maE7+FSUmlB9ymZr+z08kXfQaNpW8L2xhN0 pqS1KTkXUqRK2pbKJFqr9Okm9aEh5Rfe3kZDUbr246mOEC7twKeP62ChQen1ZjV7wkzzt9rsYj zVBOryhJVy0jW8UbJHmYlA6wB2A51Xnk7dn102QRPKglNT1qZRuYgyHAoK+gX03GDGxzs38ckC 4sZR0GmdfCbcF48yTdtKLclkhgOdzscHTBh+ZvJIueLXwhOXckjBtqbPtCYBX+mN6NzNELCDDs RaU= IronPort-SDR: +HbJuaCxhagGCChIL8FtnPHyNyVoUyphbE3Qp/TQFCHfYFJp35DTmh04DMcIpEx8ZLivzL5txZ rZTfU0uKLknd+qFLOmIxP8560HgU/ULvu3T0dut+rCATP5Fgprujrj0PtU1ownbtfIaFURwTHP amtf2312yZfFcZF+dQtK3zD4Idsyvha8AINBqJGGiEyW0aFGidPADYFDOTn8QigY0ZTmcsyWrd QLmAByWMqsrxdkF03Szj6ndCuWZAeejf/kApHKgTupBqdQQ8yOkkz+Q1TVlA9cUP+SzVPlYkwZ mgw= Date: Wed, 19 Feb 2020 18:09:42 +0000 From: Joseph Myers To: DJ Delorie CC: Subject: Re: [patch] ldconfig: trace origin paths with -v In-Reply-To: Message-ID: References: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" On Wed, 19 Feb 2020, DJ Delorie wrote: > @@ -344,7 +346,12 @@ add_single_dir (struct dir_entry *entry, int verbose) > if (ptr->ino == entry->ino && ptr->dev == entry->dev) > { > if (opt_verbose && verbose) > - error (0, 0, _("Path `%s' given more than once"), entry->path); > + { > + error (0, 0, _("Path `%s' given more than once"), entry->path); > + fprintf (stderr, "(from %s:%d and %s:%d)\n", > + entry->from_file, entry->from_line, > + ptr->from_file, ptr->from_line); This looks like it's a message, for human readers rather than for automated parsing, giving extra information about the previous message. That previous message is marked up with _() for translation, and as this new message includes English words, it should be marked up for translation as well. -- Joseph S. Myers joseph@codesourcery.com