From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9453 invoked by alias); 16 Jul 2007 22:25:34 -0000 Received: (qmail 9446 invoked by uid 22791); 16 Jul 2007 22:25:34 -0000 X-Spam-Status: No, hits=-0.2 required=5.0 tests=AWL,BAYES_00,DK_POLICY_SIGNSOME,FORGED_RCVD_HELO,SPF_FAIL X-Spam-Check-By: sourceware.org Received: from sccrmhc11.comcast.net (HELO sccrmhc11.comcast.net) (204.127.200.81) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 16 Jul 2007 22:25:32 +0000 Received: from gateway.sf.frob.com (c-67-160-211-197.hsd1.ca.comcast.net[67.160.211.197]) by comcast.net (sccrmhc11) with ESMTP id <2007071622253001100ps5n7e>; Mon, 16 Jul 2007 22:25:30 +0000 Received: from magilla.localdomain (magilla.sf.frob.com [198.49.250.228]) by gateway.sf.frob.com (Postfix) with ESMTP id 6675F357B; Mon, 16 Jul 2007 15:25:29 -0700 (PDT) Received: by magilla.localdomain (Postfix, from userid 5281) id 39D534D05CF; Mon, 16 Jul 2007 15:24:59 -0700 (PDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Roland McGrath To: Nurdin Premji Cc: frysk Subject: Re: Elfutils module reporting In-Reply-To: Nurdin Premji's message of Monday, 16 July 2007 18:00:10 -0400 <469BEA6A.606@redhat.com> Emacs: the Swiss Army of Editors. Message-Id: <20070716222459.39D534D05CF@magilla.localdomain> Date: Mon, 16 Jul 2007 22:25:00 -0000 X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2007-q3/txt/msg00131.txt.bz2 I knew there was a reason I wanted a user! ;-) The reporting interface has never really been used with updates before. It's a one-line fix. --- libdwfl/dwfl_module.c 16e7ba3c4f28363c68c66975b4a123da1383e52a +++ libdwfl/dwfl_module.c dbf8292265056d2e7302f58f09e72dcdac51cf8a @@ -149,6 +149,7 @@ dwfl_report_module (Dwfl *dwfl, const ch m->next = *tailp; m->gc = false; *tailp = m; + ++dwfl->nmodules; return m; }