Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 May 2004 07:00:48 -0700 (PDT)
From:      Dmitry Morozovsky <marck@rinet.ru>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/66936: [maintainer] fix signed int problem in display
Message-ID:  <200405201400.i4KE0m3H096240@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/66936; it has been noted by GNATS.

From: Dmitry Morozovsky <marck@rinet.ru>
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) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200405201400.i4KE0m3H096240>