From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 27 18:13:51 2007 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A601616A41B; Thu, 27 Sep 2007 18:13:51 +0000 (UTC) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: from bewilderbeast.blackhelicopters.org (bewilderbeast.blackhelicopters.org [198.22.63.8]) by mx1.freebsd.org (Postfix) with ESMTP id 4C02D13C4AC; Thu, 27 Sep 2007 18:13:51 +0000 (UTC) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: from bewilderbeast.blackhelicopters.org (localhost [127.0.0.1]) by bewilderbeast.blackhelicopters.org (8.14.1/8.13.8) with ESMTP id l8RHmHFk080740; Thu, 27 Sep 2007 13:48:17 -0400 (EDT) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: (from mwlucas@localhost) by bewilderbeast.blackhelicopters.org (8.14.1/8.13.8/Submit) id l8RHmHPa080739; Thu, 27 Sep 2007 13:48:17 -0400 (EDT) (envelope-from mwlucas) Date: Thu, 27 Sep 2007 13:48:17 -0400 From: "Michael W. Lucas" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20070927174817.GA80725@bewilderbeast.blackhelicopters.org> References: <200709262036.l8QKaiIq081564@www.freebsd.org> <200709262040.l8QKe2eH022821@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline In-Reply-To: <200709262040.l8QKe2eH022821@freefall.freebsd.org> User-Agent: Mutt/1.4.2.2i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (bewilderbeast.blackhelicopters.org [127.0.0.1]); Thu, 27 Sep 2007 13:48:17 -0400 (EDT) Cc: Subject: Re: ports/116677: [patch] flow-tools on amd64 is broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 18:13:51 -0000 --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Oops, missed a patch, attached. -- Michael W. Lucas mwlucas@BlackHelicopters.org, mwlucas@FreeBSD.org http://www.BlackHelicopters.org/~mwlucas/ Coming Soon: "Absolute FreeBSD" -- http://www.AbsoluteFreeBSD.com On 5/4/2007, the TSA kept 3 pairs of my soiled undies "for security reasons." --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-lib-ftlib.h.txt" --- lib/ftlib.h.orig Wed Sep 26 16:21:50 2007 +++ lib/ftlib.h Wed Sep 26 16:21:23 2007 @@ -416,8 +416,8 @@ }; struct fttime { - u_int32 secs; - u_int32 msecs; + time_t secs; + time_t msecs; }; struct ftver { @@ -2710,7 +2710,7 @@ int ftfile_dump(struct ftfile_entries *fte); struct ftfile_entry *ftfile_entry_new(int len); void ftfile_entry_free(struct ftfile_entry *entry); -int ftfile_mkpath(u_int32 ftime, int nest); +int ftfile_mkpath(time_t ftime, int nest); void ftfile_pathname(char *buf, int bsize, int nest, struct ftver ftv, int done, u_int32 ftime); --XsQoSWH+UP9D9v3l--