From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 4 06:20:21 2003 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 6CF1316A4BF for ; Thu, 4 Sep 2003 06:20:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4EDC43FE1 for ; Thu, 4 Sep 2003 06:20:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h84DKKUp082714 for ; Thu, 4 Sep 2003 06:20:20 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h84DKKh7082713; Thu, 4 Sep 2003 06:20:20 -0700 (PDT) Date: Thu, 4 Sep 2003 06:20:20 -0700 (PDT) Message-Id: <200309041320.h84DKKh7082713@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Subject: Re: ports/55446: Update net/xprobe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Sep 2003 13:20:21 -0000 The following reply was made to PR ports/55446; it has been noted by GNATS. From: Edwin Groothuis To: freebsd-gnats-submit@FreeBSD.org, Yonatan@xpert.com Cc: Subject: Re: ports/55446: Update net/xprobe Date: Thu, 4 Sep 2003 23:19:25 +1000 --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline icmp_echo_id.h:58: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. *** Error code 1 Interesting error.... Please see attached patches for the files directory. -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-src::config_set.cc" --- src/config_set.cc.orig Thu Sep 4 06:10:24 2003 +++ src/config_set.cc Thu Sep 4 06:10:33 2003 @@ -158,8 +158,7 @@ case XP_CONFIG_TK_SECEND: if (get_state() != XP_CONFIG_TK_SECBEGIN) { - ui->error("[x] Multiple close sections on line: - %i\n", cf->get_linenum()); + ui->error("[x] Multiple close sections on line: %i\n", cf->get_linenum()); return FAIL; } set_state(0); --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-src::os_matrix.cc" --- src/os_matrix.cc.orig Thu Sep 4 06:11:40 2003 +++ src/os_matrix.cc Thu Sep 4 06:15:16 2003 @@ -84,8 +84,7 @@ xprobe_mdebug(XPROBE_DEBUG_OSMATRIX,"Following systems are recognizable\n"); for (osid_i = osid_name.begin(); osid_i != osid_name.end(); osid_i++) { - xprobe_debug(XPROBE_DEBUG_OSMATRIX,"Id: %i\tOS: - %s\n",(*osid_i).first, (*osid_i).second.c_str()); + xprobe_debug(XPROBE_DEBUG_OSMATRIX,"Id: %i\tOS: %s\n",(*osid_i).first, (*osid_i).second.c_str()); } } --rwEMma7ioTxnRzrJ--