From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 20 07:00:48 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C483A16A4CF for ; Thu, 20 May 2004 07:00:48 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA69743D3F for ; Thu, 20 May 2004 07:00:48 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i4KE0mhY096241 for ; Thu, 20 May 2004 07:00:48 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i4KE0m3H096240; Thu, 20 May 2004 07:00:48 -0700 (PDT) (envelope-from gnats) Date: Thu, 20 May 2004 07:00:48 -0700 (PDT) Message-Id: <200405201400.i4KE0m3H096240@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dmitry Morozovsky Subject: Re: ports/66936: [maintainer] fix signed int problem in display X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dmitry Morozovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 May 2004 14:00:48 -0000 The following reply was made to PR ports/66936; it has been noted by GNATS. From: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/66936: [maintainer] fix signed int problem in display Date: Thu, 20 May 2004 17:54:57 +0400 (MSD) On Thu, 20 May 2004 FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/66936'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=66936 Oops. I missed one problem place. Diff follows. Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ Index: files/patch-ehnt__processflow.c =================================================================== RCS file: /home/ncvs/ports/net-mgmt/ehnt/files/patch-ehnt__processflow.c,v retrieving revision 1.1 diff -u -r1.1 patch-ehnt__processflow.c --- files/patch-ehnt__processflow.c 16 Nov 2002 14:36:35 -0000 1.1 +++ files/patch-ehnt__processflow.c 20 May 2004 13:54:13 -0000 @@ -2,7 +2,7 @@ $FreeBSD$ --- ehnt_processflow.c.orig Thu Oct 4 22:18:29 2001 -+++ ehnt_processflow.c Thu Nov 14 22:17:18 2002 ++++ ehnt_processflow.c Thu May 20 17:53:13 2004 @@ -218,7 +218,7 @@ dstip.s_addr=rec->dstaddr; nexthop.s_addr=rec->nexthop; @@ -12,3 +12,12 @@ printf("%d:%s:%d:", rec->input_index, inet_ntoa(srcip), +@@ -228,7 +228,7 @@ + inet_ntoa(dstip), + rec->dstport); + +- printf("%d:%d:%d:",rec->dOctets,rec->dPkts,rec->prot); ++ printf("%u:%d:%d:",rec->dOctets,rec->dPkts,rec->prot); + printf("%d:%d\n",rec->src_as,rec->dst_as); + + if (e_flt->big) {