From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26425 invoked by alias); 5 Aug 2009 10:28:39 -0000 Received: (qmail 26412 invoked by uid 22791); 5 Aug 2009 10:28:38 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_05 X-Spam-Check-By: sourceware.org Received: from e28smtp02.in.ibm.com (HELO e28smtp02.in.ibm.com) (59.145.155.2) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 05 Aug 2009 10:28:29 +0000 Received: from d28relay01.in.ibm.com (d28relay01.in.ibm.com [9.184.220.58]) by e28smtp02.in.ibm.com (8.14.3/8.13.1) with ESMTP id n75ASOvb024512 for ; Wed, 5 Aug 2009 15:58:24 +0530 Received: from d28av05.in.ibm.com (d28av05.in.ibm.com [9.184.220.67]) by d28relay01.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id n75ASOnL1527888 for ; Wed, 5 Aug 2009 15:58:24 +0530 Received: from d28av05.in.ibm.com (loopback [127.0.0.1]) by d28av05.in.ibm.com (8.14.3/8.13.1/NCO v10.0 AVout) with ESMTP id n75ASODe010941 for ; Wed, 5 Aug 2009 20:28:24 +1000 Received: from [9.124.33.233] ([9.124.33.233]) by d28av05.in.ibm.com (8.14.3/8.13.1/NCO v10.0 AVin) with ESMTP id n75ASOhr010935; Wed, 5 Aug 2009 20:28:24 +1000 Message-ID: <4A795EC8.9080704@linux.vnet.ibm.com> Date: Wed, 05 Aug 2009 10:28:00 -0000 From: Maran User-Agent: Thunderbird 2.0.0.21 (X11/20090318) MIME-Version: 1.0 To: systemtap@sourceware.org, Ananth N Mavinakayanahalli Subject: Bug fix for a compilation error Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-IsSubscribed: yes Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org X-SW-Source: 2009-q3/txt/msg00285.txt.bz2 Hi, Here is the bug fix for the compilation error caused in commit release-0.9.9-91-g034ce93. The error caused is, runtime/staprun/staprun_funcs.c:509: error: ‘check_signature_rc’ undeclared (first use in this function) --- a/runtime/staprun/staprun_funcs.c 2009-08-05 10:43:24.000000000 +0200 +++ b/runtime/staprun/staprun_funcs.c 2009-08-05 08:55:45.000000000 +0200 @@ -450,8 +450,8 @@ check_groups (void) int check_permissions(void) { int check_groups_rc; -#if HAVE_NSS int check_signature_rc = 0; +#if HAVE_NSS /* Attempt to verify the module against its signature. Return failure if the module has been tampered with (altered). */ Regards, Maran