From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9662 invoked by alias); 14 Jun 2004 14:12:10 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 9585 invoked from network); 14 Jun 2004 14:12:06 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.15.26) by sourceware.org with SMTP; 14 Jun 2004 14:12:06 -0000 Received: from sunsite.ms.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8) with ESMTP id i5EBvn3j031173; Mon, 14 Jun 2004 13:57:49 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id i5EBvmBf031165; Mon, 14 Jun 2004 13:57:48 +0200 Date: Mon, 14 Jun 2004 14:12:00 -0000 From: Jakub Jelinek To: Ulrich Drepper , Roland McGrath Cc: Glibc hackers Subject: [PATCH] Fix BZ #217 Message-ID: <20040614115748.GV5191@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2004-06/txt/msg00026.txt.bz2 Hi! xtrace /not_found printf: usage: printf format [arguments] /usr/bin/xtrace: line 145: executable `/not_found' not found\n: No such file or directory Try `xtrace --help' for more information. as opposed to the expected: xtrace /not_found executable `/not_found' not found Try `xtrace --help' for more information. 2004-06-11 Dmitry V. Levin [BZ #217] * debug/xtrace.sh: Fix typo in error diagnostics. --- libc/debug/xtrace.sh 17 May 2004 18:37:11 -0000 1.12 +++ libc/debug/xtrace.sh 11 Jun 2004 12:19:19 -0000 @@ -143,7 +143,7 @@ program=$1 shift if test ! -f "$program"; then - printf >2& $"executable \`$program' not found\n" + printf >&2 $"executable \`$program' not found\n" help_info fi if test ! -x "$program"; then Jakub