From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6000 invoked by alias); 5 Aug 2009 13:39:44 -0000 Received: (qmail 5992 invoked by uid 22791); 5 Aug 2009 13:39:42 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx2.redhat.com (HELO mx2.redhat.com) (66.187.237.31) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 05 Aug 2009 13:39:34 +0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n75DdTmQ022609; Wed, 5 Aug 2009 09:39:29 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n75DdSXT028516; Wed, 5 Aug 2009 09:39:28 -0400 Received: from [127.0.0.1] (sebastian-int.corp.redhat.com [172.16.52.221]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n75DdQWi026868; Wed, 5 Aug 2009 09:39:27 -0400 Subject: Re: Bug fix for a compilation error From: Mark Wielaard To: Maran Cc: systemtap@sourceware.org, Ananth N Mavinakayanahalli In-Reply-To: <4A795EC8.9080704@linux.vnet.ibm.com> References: <4A795EC8.9080704@linux.vnet.ibm.com> Content-Type: text/plain; charset="UTF-8" Date: Wed, 05 Aug 2009 13:39:00 -0000 Message-Id: <1249479566.3438.16.camel@springer.wildebeest.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit 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/msg00287.txt.bz2 Hi Maran, On Wed, 2009-08-05 at 15:58 +0530, Maran wrote: > 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) Ah, yes, check_signature_rc is used outside the #if HAVE_NSS block also. Applied you fix as follows: commit 583cad3143755445bb860f1f1e61e0f56befd5f7 Author: Maran Date: Wed Aug 5 15:36:01 2009 +0200 Fix compile error when not HAVE_NSS with staprun. * runtime/staprun/staprun_funcs.c (check_permissions): Declare check_signature_rc outside HAVE_NSS block. Thanks, Mark