From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28573 invoked by alias); 28 Jun 2004 20:06:22 -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 28557 invoked from network); 28 Jun 2004 20:06:22 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.15.26) by sourceware.org with SMTP; 28 Jun 2004 20:06:22 -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 i5SHpR3j016367; Mon, 28 Jun 2004 19:51:27 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id i5SHpRfQ016365; Mon, 28 Jun 2004 19:51:27 +0200 Date: Mon, 28 Jun 2004 20:06:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix bug-if1 compilation Message-ID: <20040628175127.GQ5191@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/msg00055.txt.bz2 Hi! bug-if1 lacks a prototype for strerror_r. FYI: the test fails for me on about 50% of the test boxes with invalid index returned result "eth1" (with interface names which are down). 2004-06-28 Jakub Jelinek * inet/bug-if1.c: Include string.h. --- libc/inet/bug-if1.c.jj 2004-06-28 21:57:38.000000000 +0200 +++ libc/inet/bug-if1.c 2004-06-28 22:01:07.704852046 +0200 @@ -20,6 +20,7 @@ #include #include #include +#include #include Jakub