From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 03:00:15 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 044A016A4CE for ; Sun, 4 Jan 2004 03:00:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1509043D41 for ; Sun, 4 Jan 2004 03:00:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i04B0BFR011846 for ; Sun, 4 Jan 2004 03:00:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i04B0BkK011845; Sun, 4 Jan 2004 03:00:11 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 4 Jan 2004 03:00:11 -0800 (PST) Resent-Message-Id: <200401041100.i04B0BkK011845@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Clemens Fischer" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06CD816A4CE for ; Sun, 4 Jan 2004 02:58:16 -0800 (PST) Received: from mout1.freenet.de (mout1.freenet.de [194.97.50.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 750A843D2F for ; Sun, 4 Jan 2004 02:58:13 -0800 (PST) (envelope-from ino-qc@spotteswoode.de.eu.org) Received: from [194.97.55.147] (helo=mx4.freenet.de) by mout1.freenet.de with asmtp (Exim 4.30) id 1Ad5xU-0000LC-Bu for FreeBSD-gnats-submit@freebsd.org; Sun, 04 Jan 2004 11:58:12 +0100 Received: from pd9e7670b.dip.t-dialin.net ([217.231.103.11] helo=spotteswoode.dnsalias.org) by mx4.freenet.de with asmtp (ID inode@freenet.de) (Exim 4.30 #1) id 1Ad5xT-0008Fy-V6 for FreeBSD-gnats-submit@freebsd.org; Sun, 04 Jan 2004 11:58:12 +0100 Received: (qmail 1492 invoked by uid 0); 4 Jan 2004 10:58:33 -0000 Message-Id: Date: 4 Jan 2004 11:58:10 +0100 From: "Clemens Fischer" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/60886: ppp(8) doesn't expand macro MYADDR in `!' commands X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2004 11:00:15 -0000 >Number: 60886 >Category: bin >Synopsis: ppp(8) doesn't expand macro MYADDR in `!' commands >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 04 03:00:11 PST 2004 >Closed-Date: >Last-Modified: >Originator: Clemens Fischer >Release: FreeBSD 4.9-STABLE i386 >Organization: Clemens Fischer >Environment: System: FreeBSD spotteswoode.dnsalias.org 4.9-STABLE FreeBSD 4.9-STABLE #15: Fri Jan 2 16:35:22 CET 2004 root@spotteswoode.dnsalias.org:/www/freebsd/obj/www/freebsd/RELENG_4/src/sys/n1 i386 >Description: userland-ppp allows custom configuration commands to be executed when a PPP connection goes fully functional and when the connection is terminated. administrators can rely on several macros beeing expanded to useful values, among them HISADDR (IP of peer), INTERFACE (name of interface), MYADDR (IP of local PPP interface) etc. the relevant configuration lines are (etc/rc.local): kldload netgraph || logger "kldload netgraph failed: $?" (etc/ppp/ppp.conf): set device PPPoE:xl0 set speed sync set MTU 1492 set MRU 1492 my invocation line is: "/usr/sbin/ppp -unit 0 -foreground dsl", and etc/ppp/ppp.linkup has: MYADDR: !bg /usr/local/libexec/spott/ppplinkup "LABEL" "MYADDR" "HISADDR" "INTERFACE" this script is used to establish various DNS, mail and firewall related things. only "MYADDR" is really used (and logged) in this bourne-shell script, and sometimes the very first octet of the local peers IP has the leading digits replaced by "ay", ie. i get IPs like (from the log): "ay7.231.107.141" instead of "217.231.107.141", or "ay7.231.106.233" instead of "217.231.106.233" etc. the origin of these faulty expansions of "MYADDR" must be ppp(8), as checked by additional "echo" or "printf(1)" statements. also, "MYADDR" is only read, never set in any way by my scripts. the problem doesn't appear every time ppp(8) connects and doesn't seem to depend on the actual IP. a rough estimate would be one out of five connections have the "ay-syndrome". >How-To-Repeat: i don't know how to reproduce this problem other than trying to connect and verify all the macro expansions, but at my workstation type of fbsd installation it first appeared 2003/11/27 with a system cvsup'ed 2003/11/10 and built later the same day. note that i use the netgraph(4) module for my DSL line. >Fix: since the error seems located at the code where MYADDR is expanded, i can use the actual value given to the tun0 interface, thus the following workaround makes the problem invisible: #!/bin/sh # $Header: /l/dns/RCS/freebsd.sh,v 1.8 2003/12/11 16:46:03 root Exp root $ # freebsd.sh gets parameters from calling /etc/ppp/ppp.linkup & /l/libexec/spott/*link* # LABEL="$1" MYADDR="$2" HISADDR="$3" INTERFACE="$4" logger "LABEL=${LABEL} MYADDR=${MYADDR} HISADDR=${HISADDR} INTERFACE=${INTERFACE}" # case "$MYADDR" in [0-9]*.[0-9]*.[0-9]*.[0-9]*) ip_addr="$MYADDR" ex="$0 ip_addr: $ip_addr" ;; *) ip_addr=$(ifconfig "${INTERFACE:-tun0}" | grep -- '-->' | awk '{print $2}') ex="$0 CORRECTED using ifconfig ip_addr: $ip_addr" ;; esac echo "$ip_addr" > /var/spott/ip_addr regards, clemens >Release-Note: >Audit-Trail: >Unformatted: SEND-PR: X-send-pr-version: 3.113 SEND-PR: X-GNATS-Notify: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 04:10:28 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A916C16A4CF for ; Sun, 4 Jan 2004 04:10:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A55AC43D54 for ; Sun, 4 Jan 2004 04:10:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i04CALFR024441 for ; Sun, 4 Jan 2004 04:10:21 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i04CALue024440; Sun, 4 Jan 2004 04:10:21 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 4 Jan 2004 04:10:21 -0800 (PST) Resent-Message-Id: <200401041210.i04CALue024440@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Richard Wendland Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4064F16A4CF for ; Sun, 4 Jan 2004 04:03:28 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 119C943D4C for ; Sun, 4 Jan 2004 04:03:26 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i04C3PdL033276 for ; Sun, 4 Jan 2004 04:03:25 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i04C3P39033275; Sun, 4 Jan 2004 04:03:25 -0800 (PST) (envelope-from nobody) Message-Id: <200401041203.i04C3P39033275@www.freebsd.org> Date: Sun, 4 Jan 2004 04:03:25 -0800 (PST) From: Richard Wendland To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: kern/60889: 5.2RC2 - zero IP id change not effective for TCP, detrimental to security/privacy and maybe interoperation X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2004 12:10:28 -0000 >Number: 60889 >Category: kern >Synopsis: 5.2RC2 - zero IP id change not effective for TCP, detrimental to security/privacy and maybe interoperation >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 04 04:10:21 PST 2004 >Closed-Date: >Last-Modified: >Originator: Richard Wendland >Release: 5.2-RC2 >Organization: >Environment: FreeBSD dva.in-berlin.de 5.2-RC FreeBSD 5.2-RC #0: Thu Jan 1 21:30:04 CET 2004 root@dva.in-berlin.de:/usr/src/sys/i386/compile/DVA i386 >Description: The src/sys/netinet/ip_output.c Revision 1.189 change to IP to generate a zero ip_id field when DF is used only partly achieves its objectives for TCP, and is (arguably) a detriment to security/privacy. There is also a risk of TCP interoperation problems with some Windows95/2000 systems using VJ header compression from this change. This change seems to have taken place after release 5.1, so is new to 5.2 RC1 and RC2. TCP emits FIN-ACK without DF, so now just one segment per TCP connection goes out with a non-zero ip_id. This means the change's objectives are not really met for TCP; it just means FIN-ACK must be observed. Worse, for many systems the ip_id now becomes a close approximate count of the number of TCP connections it has made, so external observers can fairly easily count the number of TCP connections a system makes, which was not possible before this change. To me this seems more of a privacy issue for all FreeBSD users than the NAT-only issue in Steve Bellovin's paper this change seeks to solve. Another consideration is that Linux made exactly this change some time ago, around Linux 2.4.4, but was forced to backout the change because (I think) of practical connectivity issues related to the comment in include/net/ip.h ip_select_ident() where it now implements an incrementing ip_id for DF: /* This is only to work around buggy Windows95/2000 * VJ compression implementations. If the ID field * does not change, they drop every other packet in * a TCP stream using header compression. */ Has anyone checked that this buggy Windows95/2000 VJ compression problem is no longer an issue in practice? I doubt that the large web hosters who use FreeBSD would be best-pleased if they ran into this for even just a few users - especially as there is no config option to disable this change. I suggest this change is backed out of 5.2, to give more time for these issues to be considered and tested. NB I've read the source and I can't see why the FIN-ACK goes out without a DF, it's emitted as TCP moves from FIN_WAIT_x state to TIME_WAIT probably at line 3091 of tcp_input.c with a call to tcp_output(). tcp_output() always appears to set IP_DF at line 998 of tcp_output.c, if path_mtu_discovery is enabled. A puzzle. Here's tcpdump output from a HTTP HEAD request showing the issue, the last segment is the FIN-ACK with the only non-zero id (and no DF) from fbsd-5_2RC2.80: 17:10:26.566423 fbsd-4_3.3700 > fbsd-5_2RC2.80: S 3955049829:3955049829(0) win 16384 (DF) (ttl 64, id 36227) 17:10:26.604219 fbsd-5_2RC2.80 > fbsd-4_3.3700: S 2579960593:2579960593(0) ack 3955049830 win 65535 (DF) (ttl 53, id 0) 17:10:26.604259 fbsd-4_3.3700 > fbsd-5_2RC2.80: . ack 1 win 17280 (DF) (ttl 64, id 36228) 17:10:26.604426 fbsd-4_3.3700 > fbsd-5_2RC2.80: P 1:61(60) ack 1 win 17280 (DF) (ttl 64, id 36229) 17:10:26.655004 fbsd-5_2RC2.80 > fbsd-4_3.3700: P 1:278(277) ack 61 win 33120 (DF) (ttl 53, id 0) 17:10:26.659403 fbsd-5_2RC2.80 > fbsd-4_3.3700: F 278:278(0) ack 61 win 33120 (DF) (ttl 53, id 0) 17:10:26.659430 fbsd-4_3.3700 > fbsd-5_2RC2.80: . ack 279 win 17280 (DF) (ttl 64, id 36231) 17:10:26.659468 fbsd-4_3.3700 > fbsd-5_2RC2.80: F 61:61(0) ack 279 win 17280 (DF) (ttl 64, id 36232) 17:10:26.694533 fbsd-5_2RC2.80 > fbsd-4_3.3700: . ack 62 win 33119 (ttl 53, id 25945) Note that with this change ip_id is no longer in network byte order, so id appears to increase in steps of 256 from i386 systems; you need to be aware of this if you are using this to count TCP connections. Incidentally this is also a new information leak from this change, you can remotely identify the endian-ness of FreeBSD systems, in practice currently if it runs on i386; whether this really matters for security is debatable. Thanks to Boris Staeblow and Tim Rylance for highlighting this change and helping me diagnose the issues. >How-To-Repeat: Make TCP connections to a 5.2-RC2 system. Use tcpdump to see the issue, observe the final FIN-ACK of a connection. >Fix: Back out the src/sys/netinet/ip_output.c Revision 1.189 change: wollman 2003/05/31 10:55:21 PDT FreeBSD src repository Modified files: sys/netinet ip_output.c Log: Don't generate an ip_id for packets with the DF bit set; ip_id is only meaningful for fragments. Also don't bother to byte-swap the ip_id when we do generate it; it is only used at the receiver as a nonce. I tried several different permutations of this code with no measurable difference to each other or to the unmodified version, so I've settled on the one for which gcc seems to generate the best code. (If anyone cares to microoptimize this differently for an architecture where it actually matters, feel free.) Suggested by: Steve Bellovin's paper in IMW'02 Revision Changes Path 1.189 +17 -4 src/sys/netinet/ip_output.c >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 08:30:18 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84D8316A4CE for ; Sun, 4 Jan 2004 08:30:18 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EBD643D49 for ; Sun, 4 Jan 2004 08:30:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i04GUGFR074776 for ; Sun, 4 Jan 2004 08:30:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i04GUGlU074775; Sun, 4 Jan 2004 08:30:16 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 4 Jan 2004 08:30:16 -0800 (PST) Resent-Message-Id: <200401041630.i04GUGlU074775@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Colin Percival Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B22016A4CE for ; Sun, 4 Jan 2004 08:28:58 -0800 (PST) Received: from fafnir.daemonology.net (h24-87-233-42.vc.shawcable.net [24.87.233.42]) by mx1.FreeBSD.org (Postfix) with SMTP id A883943D58 for ; Sun, 4 Jan 2004 08:28:55 -0800 (PST) (envelope-from cperciva@fafnir.daemonology.net) Received: (qmail 622 invoked by uid 0); 4 Jan 2004 16:28:59 -0000 Message-Id: <20040104162859.621.qmail@fafnir.daemonology.net> Date: 4 Jan 2004 16:28:59 -0000 From: Colin Percival To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/60897: devfs_rule_matchpath fails on directories X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Colin Percival List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2004 16:30:18 -0000 >Number: 60897 >Category: kern >Synopsis: devfs_rule_matchpath fails on directories >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 04 08:30:15 PST 2004 >Closed-Date: >Last-Modified: >Originator: Colin Percival >Release: FreeBSD 5.2-RC i386 >Organization: >Environment: System: FreeBSD fafnir.daemonology.net 5.2-RC FreeBSD 5.2-RC #3: Sun Jan 4 16:13:57 GMT 2004 cperciva@fafnir.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: devfs_rule_matchpath(dk,de) always returns 0 if de is a directory. In particular, this means that /dev/fd/ cannot be unhidden by specifying "path fd unhide". This causes problems for any jailed processes which want to use /dev/stdout (for example, buildkernel!) >How-To-Repeat: fafnir# mount -t devfs devfs /tmp/dev fafnir# devfs rule -s 10 delset fafnir# devfs rule -s 10 add hide fafnir# devfs rule -s 10 add path fd unhide fafnir# devfs -m /tmp/dev ruleset 10 fafnir# devfs -m /tmp/dev rule applyset fafnir# ls -l /tmp/dev/ [nothing listed] >Fix: --- devfs_rule.diff begins here --- Index: devfs_rule.c =================================================================== RCS file: /usr/local/freebsd-update-server/cvs/src/sys/fs/devfs/devfs_rule.c,v retrieving revision 1.8 diff -u -r1.8 devfs_rule.c --- devfs_rule.c 19 Feb 2003 05:47:17 -0000 1.8 +++ devfs_rule.c 4 Jan 2004 16:09:00 -0000 @@ -633,7 +633,8 @@ dev = devfs_rule_getdev(de); if (dev != NULL) pname = dev->si_name; - else if (de->de_dirent->d_type == DT_LNK) + else if (de->de_dirent->d_type == DT_LNK || + de->de_dirent->d_type == DT_DIR) pname = de->de_dirent->d_name; else return (0); --- devfs_rule.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 10:10:18 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8906916A4CE for ; Sun, 4 Jan 2004 10:10:18 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 309CB43D5E for ; Sun, 4 Jan 2004 10:10:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i04IAEFR019158 for ; Sun, 4 Jan 2004 10:10:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i04IAE90019157; Sun, 4 Jan 2004 10:10:14 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 4 Jan 2004 10:10:14 -0800 (PST) Resent-Message-Id: <200401041810.i04IAE90019157@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bastian Fuchs Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE79E16A4CE for ; Sun, 4 Jan 2004 10:02:07 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F6E243D66 for ; Sun, 4 Jan 2004 10:02:00 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i04I1xdL018718 for ; Sun, 4 Jan 2004 10:01:59 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i04I1xtB018717; Sun, 4 Jan 2004 10:01:59 -0800 (PST) (envelope-from nobody) Message-Id: <200401041801.i04I1xtB018717@www.freebsd.org> Date: Sun, 4 Jan 2004 10:01:59 -0800 (PST) From: Bastian Fuchs To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: misc/60900: During shutdown sync fails: "giving up on buffers" X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2004 18:10:18 -0000 >Number: 60900 >Category: misc >Synopsis: During shutdown sync fails: "giving up on buffers" >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 04 10:10:13 PST 2004 >Closed-Date: >Last-Modified: >Originator: Bastian Fuchs >Release: 5.2-RC2 with 5.2-current Kernel >Organization: >Environment: FreeBSD vulpec.lan.wg 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sat Jan 3 01:53:08 CET 2004 root@vulpec.lan.wg:/usr/src/sys/i386/compile/VULPEC i386 >Description: During shutdown the buffer sync SOMETIMES fails with syncing disks, buffers remaining... 55 55 55 55 55 (some times more, don't know exactly) giving up on 55 buffers I am using UFS2 for root and UFS2+SU for all other filesystems (/var, /tmp, /usr, /home). The same problem exists with 5.1 and 5.1-current. >How-To-Repeat: The problem appears irregular on shutdowns. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 11:06:49 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1201616A4CE; Sun, 4 Jan 2004 11:06:49 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56A8643D48; Sun, 4 Jan 2004 11:06:48 -0800 (PST) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i04J6mFR023862; Sun, 4 Jan 2004 11:06:48 -0800 (PST) (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i04J6mYZ023858; Sun, 4 Jan 2004 11:06:48 -0800 (PST) (envelope-from linimon) Date: Sun, 4 Jan 2004 11:06:48 -0800 (PST) From: Mark Linimon Message-Id: <200401041906.i04J6mYZ023858@freefall.freebsd.org> To: linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/60892: Added -p option to kldxref to allow creation of hints file in alternate path X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2004 19:06:49 -0000 Synopsis: Added -p option to kldxref to allow creation of hints file in alternate path Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Jan 4 11:05:31 PST 2004 Responsible-Changed-Why: Rescue this from 'pending'; not sure if it should be kern or conf. http://www.freebsd.org/cgi/query-pr.cgi?pr=60892 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 11:20:17 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3036B16A4CE for ; Sun, 4 Jan 2004 11:20:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02A5543D45 for ; Sun, 4 Jan 2004 11:20:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i04JKDFR024280 for ; Sun, 4 Jan 2004 11:20:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i04JKDkx024279; Sun, 4 Jan 2004 11:20:13 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 4 Jan 2004 11:20:13 -0800 (PST) Resent-Message-Id: <200401041920.i04JKDkx024279@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Logan Gabriel Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A22C316A4CE for ; Sun, 4 Jan 2004 11:11:54 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91CCD43D4C for ; Sun, 4 Jan 2004 11:11:47 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i04JBldL099291 for ; Sun, 4 Jan 2004 11:11:47 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i04JBln7099290; Sun, 4 Jan 2004 11:11:47 -0800 (PST) (envelope-from nobody) Message-Id: <200401041911.i04JBln7099290@www.freebsd.org> Date: Sun, 4 Jan 2004 11:11:47 -0800 (PST) From: Logan Gabriel To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: bin/60901: XDR stdio is broken on 64 bit platforms. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2004 19:20:17 -0000 >Number: 60901 >Category: bin >Synopsis: XDR stdio is broken on 64 bit platforms. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 04 11:20:13 PST 2004 >Closed-Date: >Last-Modified: >Originator: Logan Gabriel >Release: 5.2-CURRENT >Organization: Corvus security group >Environment: n/a >Description: XDR stdio is broken on 64 bit platforms. If sizeof(int32_t) != sizeof(long) xdrstdio_putlong and xdrstdio_getlong will read/write incorrect values. >How-To-Repeat: I have written an example program that may be obtained at: http://deity.kaosol.net/xdrbug.tgz. If for some reason that is not available just create an xdrstdio stream and serialize a few values into it. Compare a md5 of that output on a 64 bit platform with the output on a 32 bit platform and they will differ. >Fix: NetBSD has already fixed this issue per PR lib/23960. See http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libc/rpc/xdr_stdio.c >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 16:39:55 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 675B116A4CE; Sun, 4 Jan 2004 16:39:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4F3143D1F; Sun, 4 Jan 2004 16:39:54 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from freefall.freebsd.org (obrien@localhost [127.0.0.1]) i050dsFR050049; Sun, 4 Jan 2004 16:39:54 -0800 (PST) (envelope-from obrien@freefall.freebsd.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i050dsji050045; Sun, 4 Jan 2004 16:39:54 -0800 (PST) (envelope-from obrien) Date: Sun, 4 Jan 2004 16:39:54 -0800 (PST) From: "David E. O'Brien" Message-Id: <200401050039.i050dsji050045@freefall.freebsd.org> To: rsidd@online.fr, obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/48116: Support for Synaptics touchpad X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 00:39:55 -0000 Synopsis: Support for Synaptics touchpad State-Changed-From-To: open->feedback State-Changed-By: obrien State-Changed-When: Sun Jan 4 16:39:26 PST 2004 State-Changed-Why: Do you have a new tested patch that applies against 5.2-CURRENT? http://www.freebsd.org/cgi/query-pr.cgi?pr=48116 From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 20:55:01 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF94716A4CE; Sun, 4 Jan 2004 20:55:01 -0800 (PST) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A49643D1D; Sun, 4 Jan 2004 20:55:00 -0800 (PST) (envelope-from rsidd@online.fr) Received: from imp2-l.free.fr (imp2-l.free.fr [213.228.0.203]) by postfix3-2.free.fr (Postfix) with ESMTP id 6489FC07C; Mon, 5 Jan 2004 05:54:59 +0100 (CET) Received: by imp2-l.free.fr (Postfix, from userid 33) id 5D18916E1D; Mon, 5 Jan 2004 05:54:59 +0100 (MET) Received: from user-0cdfev4.cable.mindspring.com (user-0cdfev4.cable.mindspring.com [24.215.187.228]) by imp2-l.free.fr (IMP) with HTTP for ; Mon, 5 Jan 2004 05:54:59 +0100 Message-ID: <1073278499.3ff8ee231258b@imp2-l.free.fr> Date: Mon, 5 Jan 2004 05:54:59 +0100 From: Rahul Siddharthan To: "David E. O'Brien" References: <200401050039.i050dsji050045@freefall.freebsd.org> In-Reply-To: <200401050039.i050dsji050045@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.1 cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/48116: Support for Synaptics touchpad X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 04:55:02 -0000 "David E. O'Brien" said: > Do you have a new tested patch that applies against 5.2-CURRENT? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=48116 One was posted on -current a few days ago. See http://lists.freebsd.org/pipermail/freebsd-current/2004-January/017689.html I have a patch too, which I'll post on request, but it's basically the same. I have the following issues with it: 1. It worked perfectly on my old laptop, but on my current laptop it doesn't detect the touchpad as a synaptics (it detects it as Microsoft Intellimouse) unless I change the order of probing in psm.c . 2. The scrollbar (mousewheel-substitute along right of touchpad) on my present laptop doesn't work. Without the patch, it has no effect; with the patch, it yields normal cursor up-down movement, and no left-right movement, no wheel effect. I plan to investigate further in a few days time. Others pointed out issues with this patch too: see http://lists.freebsd.org/pipermail/freebsd-current/2004-January/017782.html From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 21:20:18 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F93216A4CE for ; Sun, 4 Jan 2004 21:20:18 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 774CC43D45 for ; Sun, 4 Jan 2004 21:20:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i055KBFR079463 for ; Sun, 4 Jan 2004 21:20:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i055KBJB079462; Sun, 4 Jan 2004 21:20:11 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 4 Jan 2004 21:20:11 -0800 (PST) Resent-Message-Id: <200401050520.i055KBJB079462@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KS Braunsdorf Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4359616A4CE; Sun, 4 Jan 2004 21:16:10 -0800 (PST) Received: from proxy.npcguild.org (rrcs-ma-24-56-87-2.biz.rr.com [24.56.87.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C937043D39; Sun, 4 Jan 2004 21:16:06 -0800 (PST) (envelope-from ksb@proxy.npcguild.org) Received: from proxy.npcguild.org (ksb@localhost [127.0.0.1]) by proxy.npcguild.org (8.12.10/8.12.10) with ESMTP id i055G5jK002237; Sun, 4 Jan 2004 23:16:05 -0600 (CST) (envelope-from ksb@proxy.npcguild.org) Received: (from ksb@localhost) by proxy.npcguild.org (8.12.10/8.12.10/Submit) id i055G5Xo002236; Sun, 4 Jan 2004 23:16:05 -0600 (CST) (envelope-from ksb) Message-Id: <200401050516.i055G5Xo002236@proxy.npcguild.org> Date: Sun, 4 Jan 2004 23:16:05 -0600 (CST) From: KS Braunsdorf To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: petef@FreeBSD.org Subject: bin/60914: m4 C operators are not X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: KS Braunsdorf List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 05:20:18 -0000 >Number: 60914 >Category: bin >Synopsis: m4 C operators are not >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 04 21:20:10 PST 2004 >Closed-Date: >Last-Modified: >Originator: KS Braunsdorf >Release: FreeBSD 4.9-STABLE i386 >Organization: NonPlayer Character Guild >Environment: System: FreeBSD proxy.npcguild.org 4.9-STABLE FreeBSD 4.9-STABLE #0: Sun Jan 4 15:30:02 CST 2004 ksb@proxy.npcguild.org:/usr/obj/usr/src/sys/GENERIC i386 All version of m4 under FreeBSD I can test 2.1 to 5.1 >Description: m4 doesn't do what the manaul page says it should for many of the C operators. It do not work like m4 on other UNIX-like operating system either. >How-To-Repeat: These operators are just plain wrong (not the bitwise ones): $ echo "eval(7&3)" | m4 should ouptut "3", not "1". $ echo "eval(5^3)" | m4 should output "6", not "125" $ echo "eval(5|3)" | m4 should output "7", not "1" Since a C programmer depends on && and || being short circut (I think) $ echo "eval(0&&4/0)" | m4 should ouptut "0", not "m4: division by zero in eval." $ echo "eval(1||7/0)" | m4 should ouyput "1", not "m4: division by zero in eval." I think the error message for some cases we unclear, for example: $ echo "eval(4?78)" | m4 m4: bad query, missing ":" in expr 4?78. is better than $ echo "eval(4?78)" | /usr/bin/OLD/m4 m4: bad query in expr 4?78. The precedence of both == and != were wrong as was the precedence of "!". I fixed thise too. I left in the ** (eponent) operator, as it doesn't conflict with the C set, but it is not documented, either. >Fix: The patch below fixes these issues. --- expr.c.orig Sun Jan 4 18:08:50 2004 +++ expr.c Sun Jan 4 22:44:47 2004 @@ -60,45 +60,41 @@ /* - * expression evaluator: performs a standard recursive - * descent parse to evaluate any expression permissible - * within the following grammar: + * Expression evaluator: performs a standard recursive descent + * parse to evaluate any expression permissible within the + * following grammar, which should be C's operator set. + * N.B. We've added exponents (unary ** expr) for no good reason. * - * expr : query EOS - * query : lor - * | lor "?" query ":" query - * lor : land { "||" land } - * land : not { "&&" not } - * not : eqrel - * | '!' not - * eqrel : shift { eqrelop shift } - * shift : primary { shop primary } - * primary : term { addop term } - * term : exp { mulop exp } - * exp : unary { expop unary } - * unary : factor - * | unop unary - * factor : constant - * | "(" query ")" - * constant: num - * | "'" CHAR "'" - * num : DIGIT - * | DIGIT num - * shop : "<<" - * | ">>" - * eqrel : "=" - * | "==" - * | "!=" - * | "<" - * | ">" - * | "<=" - * | ">=" + * expr : query EOS + * query : lor + * | lor "?" query ":" query + * lor : land { "||" land } * + * land : nor { "&&" bor } * + * bor : xor { "|" xor } * + * xor : band { "^" band } * + * band : eqrel { "&" eqrel } * + * eqrel : nerel { ("==" | "!=") nerel } * + * nerel : shift { ("<" | ">" | "<=" | ">=") shift } * + * shift : primary { ("<<" | ">>") primary } * + * primary : term { ("+" | "-") term } * + * term : exp { ("*" | "/" | "%") exp } * + * exp : unary { "**" exp } * ! not doc'd + * unary : factor + * | ("+" | "-" | "~" | "!") unary + * factor : constant + * | "(" query ")" + * constant: num + * | "'" CHAR "'" + * num : DIGIT + * | DIGIT num + * 0xHEX ? * * - * This expression evaluator is lifted from a public-domain - * C Pre-Processor included with the DECUS C Compiler distribution. - * It is hacked somewhat to be suitable for m4. + * This expression evaluator is lifted from a public-domain + * C Pre-Processor included with the DECUS C Compiler distribution. + * It is hacked somewhat to be suitable for m4. * - * Originally by: Mike Lutz - * Bob Harper + * Originally by: Mike Lutz + * Bob Harper + * Made closer to the C operator set by KSBraunsdorf */ @@ -113,5 +109,5 @@ #define HEX 16 -static const char *nxtch; /* Parser scan pointer */ +static const char *nxtch; /* Parser scan pointer */ static const char *where; @@ -119,6 +115,9 @@ static int lor(void); static int land(void); -static int not(void); +static int bor(void); +static int xor(void); +static int band(void); static int eqrel(void); +static int nerel(void); static int shift(void); static int primary(void); @@ -129,5 +128,4 @@ static int constant(void); static int num(void); -static int geteqrel(void); static int skipws(void); static void experr(const char *); @@ -138,4 +136,8 @@ #include static jmp_buf expjump; +/* for short circut expression + * for exmple "0 && 10/0" should return 0, not an exception -- ksb + */ +static int mayeval = 0; /* @@ -144,6 +146,6 @@ * getch - return the next character from expr string. */ -#define ungetch() nxtch-- -#define getch() *nxtch++ +#define ungetch() nxtch-- +#define getch() *nxtch++ int @@ -154,4 +156,5 @@ nxtch = expbuf; where = expbuf; + mayeval = 1; if (setjmp(expjump) != 0) return FALSE; @@ -171,6 +174,7 @@ query(void) { - int result, true_val, false_val; + int result, true_val, false_val, waseval; + waseval = mayeval; result = lor(); if (skipws() != '?') { @@ -179,24 +183,34 @@ } + mayeval = result; true_val = query(); if (skipws() != ':') - experr("bad query"); + experr("bad query, missing \":\""); + mayeval = !result; false_val = query(); + mayeval = waseval; return result ? true_val : false_val; } /* - * lor : land { '||' land } + * lor : land { '||' land }, but we don't short out divide by zero + * or the like. We should. */ static int lor(void) { - int c, vl, vr; + int c, vl, vr, waseval; + waseval = mayeval; vl = land(); while ((c = skipws()) == '|') { - if (getch() != '|') + if (getch() != '|') { ungetch(); + break; + } + if (0 != vl) { + mayeval = 0; + } vr = land(); vl = vl || vr; @@ -204,4 +218,5 @@ ungetch(); + mayeval = waseval; return vl; } @@ -213,78 +228,144 @@ land(void) { - int c, vl, vr; + int c, vl, vr, waseval; - vl = not(); + waseval = mayeval; + vl = bor(); while ((c = skipws()) == '&') { - if (getch() != '&') + if (getch() != '&') { ungetch(); - vr = not(); + break; + } + if (0 == vl) { + mayeval = 0; + } + vr = bor(); vl = vl && vr; } ungetch(); + mayeval = waseval; return vl; } /* - * not : eqrel | '!' not + * or : xor { '|' xor } * */ static int -not(void) +bor(void) { - int val, c; + int vl, vr, c, cr; - if ((c = skipws()) == '!' && getch() != '=') { + vl = xor(); + while ((c = skipws()) == '|') { + cr = getch(); ungetch(); - val = not(); - return !val; + if ('|' == cr) { + break; + } + vr = xor(); + vl |= vr; } + ungetch(); + return vl; +} - if (c == '!') - ungetch(); +/* + * xor : and { '|' and } * + */ +static int +xor(void) +{ + int vl, vr, c; + + vl = band(); + while ((c = skipws()) == '^') { + vr = band(); + vl ^= vr; + } ungetch(); - return eqrel(); + return vl; } /* - * eqrel : shift { eqrelop shift } + * band : eqrel { '&' eqrel } * */ static int -eqrel(void) +band(void) { - int vl, vr, op; + int vl, vr, c, cr; - vl = shift(); - while ((op = geteqrel()) != -1) { - vr = shift(); + vl = eqrel(); + while ((c = skipws()) == '&') { + cr = getch(); + ungetch(); + if ('&' == cr) { + break; + } + vr = eqrel(); + vl &= vr; + } + ungetch(); + return vl; +} - switch (op) { +/* + * eqrel : nerel { ("==" | "!=") nerel } * + */ +static int +eqrel(void) +{ + int vl, vr, c, c2; - case EQL: + vl = nerel(); + while ((c = skipws()) == '!' || c == '=') { + if ((c2 = getch()) != '=') { + ungetch(); + break; + } + vr = nerel(); + switch (c) { + case '=': vl = (vl == vr); break; - case NEQ: + case '!': vl = (vl != vr); - break; + break; + } + } + ungetch(); + return vl; +} - case LEQ: - vl = (vl <= vr); - break; - case LSS: - vl = (vl < vr); - break; - case GTR: - vl = (vl > vr); +/* + * nerel : shift { ("<=" | ">=" | "<" | ">") shift } * + */ +static int +nerel(void) +{ + int vl, vr, c, c2; + + vl = shift(); + while ((c = skipws()) == '<' || c == '>') { + if ((c2 = getch()) != '=') { + ungetch(); + c2 = ' '; + } + vr = shift(); + switch (c) { + case '<': + vl = ' ' == c2 ? (vl < vr) : (vl <= vr); break; - case GEQ: - vl = (vl >= vr); + case '>': + vl = ' ' == c2 ? (vl > vr) : (vl >= vr); break; } } + ungetch(); return vl; } /* - * shift : primary { shop primary } + * shift : primary { ("<<" | ">>") primary } */ static int @@ -294,5 +375,9 @@ vl = primary(); - while (((c = skipws()) == '<' || c == '>') && getch() == c) { + while (((c = skipws()) == '<' || c == '>')) { + if (getch() != c) { + ungetch(); + break; + } vr = primary(); @@ -302,7 +387,4 @@ vl >>= vr; } - - if (c == '<' || c == '>') - ungetch(); ungetch(); return vl; @@ -310,5 +392,5 @@ /* - * primary : term { addop term } + * primary : term { ("+" | "-") term } * */ static int @@ -332,5 +414,5 @@ /* - * := { } + * term := exp { ("*" | "/" | "%") exp } * */ static int @@ -348,5 +430,7 @@ break; case '/': - if (vr == 0) + if (! mayeval) + /* nada */; + else if (vr == 0) errx(1, "division by zero in eval."); else @@ -354,5 +438,7 @@ break; case '%': - if (vr == 0) + if (! mayeval) + /* nada */; + else if (vr == 0) errx(1, "modulo zero in eval."); else @@ -366,5 +452,5 @@ /* - * := { } + * term := unary { "**" exp } * */ static int @@ -374,13 +460,9 @@ vl = unary(); - switch (c = skipws()) { - - case '*': + while ((c = skipws()) == '*') { if (getch() != '*') { ungetch(); break; } - - case '^': vr = exp(); n = 1; @@ -389,5 +471,4 @@ return n; } - ungetch(); return vl; @@ -395,5 +476,5 @@ /* - * unary : factor | unop unary + * unary : factor | ("+" | "-" | "~" | "!") unary */ static int @@ -402,5 +483,5 @@ int val, c; - if ((c = skipws()) == '+' || c == '-' || c == '~') { + if ((c = skipws()) == '+' || c == '-' || c == '~' || c == '!') { val = unary(); @@ -412,4 +493,6 @@ case '~': return ~val; + case '!': + return !val; } } @@ -430,5 +513,5 @@ val = query(); if (skipws() != ')') - experr("bad factor"); + experr("missing close parenthesis"); return val; } @@ -526,8 +609,8 @@ switch(c) { case '8': case '9': - if (base == OCTAL) + if (base == OCTAL) goto bad_digit; /*FALLTHRU*/ - case '0': case '1': case '2': case '3': + case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': rval *= base; @@ -551,53 +634,9 @@ bad_digit: ungetch(); - - if (ndig == 0) - experr("bad constant"); - - return rval; -} - -/* - * eqrel : '=' | '==' | '!=' | '<' | '>' | '<=' | '>=' - */ -static int -geteqrel(void) -{ - int c1, c2; - - c1 = skipws(); - c2 = getch(); - - switch (c1) { - - case '=': - if (c2 != '=') - ungetch(); - return EQL; - case '!': - if (c2 == '=') - return NEQ; - ungetch(); - ungetch(); - return -1; - - case '<': - if (c2 == '=') - return LEQ; - ungetch(); - return LSS; - - case '>': - if (c2 == '=') - return GEQ; - ungetch(); - return GTR; + if (ndig == 0) + experr("no digits in constant"); - default: - ungetch(); - ungetch(); - return -1; - } + return rval; } @@ -616,5 +655,5 @@ /* - * resets environment to eval(), prints an error + * resets environment to eval(), prints an error * and forces eval to return FALSE. */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jan 4 22:32:29 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B2D516A4CE for ; Sun, 4 Jan 2004 22:32:29 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F92543D39 for ; Sun, 4 Jan 2004 22:32:28 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.10/8.12.9) with ESMTP id i056WRvT055462; Sun, 4 Jan 2004 22:32:27 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.10/8.12.10/Submit) id i056WRpd055461; Sun, 4 Jan 2004 22:32:27 -0800 (PST) (envelope-from obrien) Date: Sun, 4 Jan 2004 22:32:27 -0800 From: "David O'Brien" To: Rahul Siddharthan Message-ID: <20040105063227.GA55403@dragon.nuxi.com> References: <200401050039.i050dsji050045@freefall.freebsd.org> <1073278499.3ff8ee231258b@imp2-l.free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1073278499.3ff8ee231258b@imp2-l.free.fr> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/48116: Support for Synaptics touchpad X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 06:32:29 -0000 On Mon, Jan 05, 2004 at 05:54:59AM +0100, Rahul Siddharthan wrote: > "David E. O'Brien" said: > > Do you have a new tested patch that applies against 5.2-CURRENT? > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=48116 > > One was posted on -current a few days ago. See > http://lists.freebsd.org/pipermail/freebsd-current/2004-January/017689.html > > I have a patch too, which I'll post on request, but it's basically the same. ... > Others pointed out issues with this patch too: see > http://lists.freebsd.org/pipermail/freebsd-current/2004-January/017782.html As Philip Paeps philip+freebsd at paeps.cx points out there are problems with the current version of the patch that prevent me from committing it. Do you plan to address his issues (I hope so); or should I close the PR? -- -- David (obrien@FreeBSD.org) From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 01:00:41 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4E3616A4CE for ; Mon, 5 Jan 2004 01:00:41 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 672B843D3F for ; Mon, 5 Jan 2004 01:00:38 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i0590cFR096304 for ; Mon, 5 Jan 2004 01:00:38 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i0590c50096302; Mon, 5 Jan 2004 01:00:38 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 5 Jan 2004 01:00:38 -0800 (PST) Resent-Message-Id: <200401050900.i0590c50096302@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Divacky Roman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F44116A4CF for ; Mon, 5 Jan 2004 00:50:46 -0800 (PST) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.10.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id EACDC43D2F for ; Mon, 5 Jan 2004 00:50:43 -0800 (PST) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (8.12.10/8.12.9) with ESMTP id i058oeYH044073 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Mon, 5 Jan 2004 09:50:40 +0100 (CET) Received: (from xdivac02@localhost) by eva.fit.vutbr.cz (8.12.10/8.12.5/Submit) id i058odRl044071; Mon, 5 Jan 2004 09:50:39 +0100 (CET) Message-Id: <200401050850.i058odRl044071@eva.fit.vutbr.cz> Date: Mon, 5 Jan 2004 09:50:39 +0100 (CET) From: Divacky Roman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/60917: implementation of ata sleeping X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Divacky Roman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 09:00:41 -0000 >Number: 60917 >Category: kern >Synopsis: implementation of ata sleeping >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jan 05 01:00:38 PST 2004 >Closed-Date: >Last-Modified: >Originator: Divacky Roman >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD eva.fit.vutbr.cz 4.9-STABLE FreeBSD 4.9-STABLE #2: Thu Nov 20 11:20:53 CET 2003 root@tereza.fit.vutbr.cz:/home/src/sys/sys-49/compile/EVA i386 >Description: implementation of ata devices sleeping/standbying >How-To-Repeat: atacontrol sleep channel device atacontrol standby channel device >Fix: --- ata-all.c.orig Mon Dec 29 13:13:25 2003 +++ ata-all.c Wed Dec 31 14:38:52 2003 @@ -509,6 +509,31 @@ error = ata_detach(device); /* SOS should disable channel HW on controller XXX */ break; + case ATASTANDBY: + case ATASLEEP: + if (!device || !(ch = device_get_softc(device))) { + error = ENXIO; + break; + } + if (ch->device[iocmd->device].param && + ch->device[iocmd->device].param->support.command2 + & ATA_SUPPORT_FLUSHCACHE) + ata_controlcmd(&ch->device[iocmd->device], ATA_FLUSHCACHE, 0, 0, 0); + if (iocmd->cmd == ATASLEEP) + ata_controlcmd(&ch->device[iocmd->device], ATA_SLEEP, 0, 0, 0); + else + ata_controlcmd(&ch->device[iocmd->device], ATA_STANDBY, 0, 0, 0); + error = 0; + break; + case ATACHECK: + if (!device || !(ch = device_get_softc(device))) { + error = ENXIO; + break; + } + iocmd->u.mode.mode[iocmd->device] = + ata_controlcmd(&ch->device[iocmd->device], ATA_CHECKMODE, 0, 0, 0); + error = 0; + break; #ifdef DEV_ATARAID --- ata.h.orig Mon Dec 29 13:14:27 2003 +++ /sys/sys/ata.h Wed Dec 31 14:13:27 2003 @@ -227,6 +227,8 @@ #define ATA_READ_DMA 0xc8 /* read w/DMA command */ #define ATA_WRITE_DMA 0xca /* write w/DMA command */ #define ATA_WRITE_DMA_QUEUED 0xcc /* write w/DMA QUEUED command */ +#define ATA_STANDBY 0xe0 /* standby command */ +#define ATA_CHECKMODE 0xe5 /* check power mode */ #define ATA_SLEEP 0xe6 /* sleep command */ #define ATA_FLUSHCACHE 0xe7 /* flush cache to disk */ #define ATA_FLUSHCACHE48 0xea /* flush cache to disk */ @@ -318,6 +320,9 @@ #define ATARAIDADDSPARE 0x0123 #define ATARAIDREBUILD 0x0124 #define ATAENCSTAT 0x0130 +#define ATASLEEP 0x0131 +#define ATASTANDBY 0x0132 +#define ATACHECK 0x0133 union { int maxchan; --- atacontrol.c.orig Mon Dec 29 13:25:41 2003 +++ atacontrol.c Wed Dec 31 14:27:38 2003 @@ -493,7 +493,18 @@ mode2str(iocmd.u.mode.mode[1])); } } - else + else if (!strcmp(argv[1], "sleep") && argc == 4) { + iocmd.cmd = ATASLEEP; + iocmd.device = atoi(argv[3]); + if (ioctl(fd, IOCATA, &iocmd) < 0) + err(1, "ioctl(ATASLEEP)"); + } + else if (!strcmp(argv[1], "standby") && argc == 4) { + iocmd.cmd = ATASTANDBY; + iocmd.device = atoi(argv[3]); + if (ioctl(fd, IOCATA, &iocmd) < 0) + err(1, "ioctl(ATASTANDBY)"); + } else usage(); exit(EX_OK); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 01:50:21 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 804EC16A4CF for ; Mon, 5 Jan 2004 01:50:21 -0800 (PST) Received: from master.plesk.ru (nsk-gw.sw-soft.com [80.89.140.126]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09F5343D5E for ; Mon, 5 Jan 2004 01:50:09 -0800 (PST) (envelope-from kpisman@plesk.ru) Received: from [192.168.42.23] (Pisman.plesk.ru [192.168.42.23]) by master.plesk.ru (8.12.10/8.12.8) with ESMTP id i059o4Tc036907 for ; Mon, 5 Jan 2004 15:50:05 +0600 (NOVT) (envelope-from kpisman@plesk.ru) From: Kirill Pisman To: freebsd-bugs@freebsd.org Content-Type: text/plain Organization: Plesk , inc Message-Id: <1073296228.575.235.camel@nothing.plesk.ru> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Mon, 05 Jan 2004 15:50:29 +0600 Content-Transfer-Encoding: 7bit Subject: VIA 694 integrated ATA controller troubles. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: kpisman@plesk.ru List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 09:50:21 -0000 Hello. I got some troubles with VIA 694 integrated ATA controller on FreeBSD 5.2-RC (cvsuped from releng_5_2 few days ago).Attached device is 40Gb Seagate Barracuda ATA 4, and when ata mode is active (it is by default) i got mesages like ad0:warning:UDMA ICRC ERROR . This is not cable and not a controller physicaly - ths machine is works normaly under WinXP when device is switched into PIO4 there is no troubles. Also there is some troubles with geometry detection of this disk.With ATA enabled machine is not stops normaly - "gave up with * buffers" This machine is not up now, and there is some troubles with getting of dmesg & other from it. If this is new trouble, or in any other case if this info is needed i will send it. And of cource i will be happy to see any sorces of info about this trouble or troubles like this. -- Kirill Pisman From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 02:40:12 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4293416A4CE; Mon, 5 Jan 2004 02:40:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9523043D1D; Mon, 5 Jan 2004 02:40:11 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from freefall.freebsd.org (znerd@localhost [127.0.0.1]) i05AeBFR006551; Mon, 5 Jan 2004 02:40:11 -0800 (PST) (envelope-from znerd@freefall.freebsd.org) Received: (from znerd@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05AeB5u006547; Mon, 5 Jan 2004 02:40:11 -0800 (PST) (envelope-from znerd) Date: Mon, 5 Jan 2004 02:40:11 -0800 (PST) From: Ernst de Haan Message-Id: <200401051040.i05AeB5u006547@freefall.freebsd.org> To: znerd@FreeBSD.org, freebsd-bugs@FreeBSD.org, joe@FreeBSD.org Subject: Re: kern/59687: Broken USB with 5.x on ASUS A7V8X-X X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 10:40:12 -0000 Synopsis: Broken USB with 5.x on ASUS A7V8X-X Responsible-Changed-From-To: freebsd-bugs->joe Responsible-Changed-By: znerd Responsible-Changed-When: Mon Jan 5 02:39:46 PST 2004 Responsible-Changed-Why: Assigning to USB maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=59687 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 02:42:12 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D79D16A4CE; Mon, 5 Jan 2004 02:42:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BFAF43D48; Mon, 5 Jan 2004 02:42:07 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from freefall.freebsd.org (znerd@localhost [127.0.0.1]) i05Ag7FR006660; Mon, 5 Jan 2004 02:42:07 -0800 (PST) (envelope-from znerd@freefall.freebsd.org) Received: (from znerd@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05Ag7Sh006656; Mon, 5 Jan 2004 02:42:07 -0800 (PST) (envelope-from znerd) Date: Mon, 5 Jan 2004 02:42:07 -0800 (PST) From: Ernst de Haan Message-Id: <200401051042.i05Ag7Sh006656@freefall.freebsd.org> To: znerd@FreeBSD.org, freebsd-bugs@FreeBSD.org, joe@FreeBSD.org Subject: Re: kern/57273: PATCH, fix usb keyboard repeat problem X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 10:42:12 -0000 Synopsis: PATCH, fix usb keyboard repeat problem Responsible-Changed-From-To: freebsd-bugs->joe Responsible-Changed-By: znerd Responsible-Changed-When: Mon Jan 5 02:41:56 PST 2004 Responsible-Changed-Why: Over to USB maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=57273 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 02:44:39 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2CA516A4CE; Mon, 5 Jan 2004 02:44:39 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2999943D3F; Mon, 5 Jan 2004 02:44:39 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from freefall.freebsd.org (znerd@localhost [127.0.0.1]) i05AidFR006733; Mon, 5 Jan 2004 02:44:39 -0800 (PST) (envelope-from znerd@freefall.freebsd.org) Received: (from znerd@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05AidDr006729; Mon, 5 Jan 2004 02:44:39 -0800 (PST) (envelope-from znerd) Date: Mon, 5 Jan 2004 02:44:39 -0800 (PST) From: Ernst de Haan Message-Id: <200401051044.i05AidDr006729@freefall.freebsd.org> To: znerd@FreeBSD.org, freebsd-bugs@FreeBSD.org, joe@FreeBSD.org Subject: Re: kern/60276: Kernel panic when plugging in umass device (XClef-HD500) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 10:44:39 -0000 Old Synopsis: Kernel panic when plugginh in USB storage New Synopsis: Kernel panic when plugging in umass device (XClef-HD500) Responsible-Changed-From-To: freebsd-bugs->joe Responsible-Changed-By: znerd Responsible-Changed-When: Mon Jan 5 02:43:32 PST 2004 Responsible-Changed-Why: Over to USB maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=60276 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 02:47:24 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24CEB16A4CE; Mon, 5 Jan 2004 02:47:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 735D443D41; Mon, 5 Jan 2004 02:47:23 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from freefall.freebsd.org (znerd@localhost [127.0.0.1]) i05AlNFR006798; Mon, 5 Jan 2004 02:47:23 -0800 (PST) (envelope-from znerd@freefall.freebsd.org) Received: (from znerd@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05AlNId006794; Mon, 5 Jan 2004 02:47:23 -0800 (PST) (envelope-from znerd) Date: Mon, 5 Jan 2004 02:47:23 -0800 (PST) From: Ernst de Haan Message-Id: <200401051047.i05AlNId006794@freefall.freebsd.org> To: znerd@FreeBSD.org, freebsd-bugs@FreeBSD.org, joe@FreeBSD.org Subject: Re: kern/60217: EHCI controller halts when USB 2.0 device attached. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 10:47:24 -0000 Synopsis: EHCI controller halts when USB 2.0 device attached. Responsible-Changed-From-To: freebsd-bugs->joe Responsible-Changed-By: znerd Responsible-Changed-When: Mon Jan 5 02:47:13 PST 2004 Responsible-Changed-Why: Over to USB maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=60217 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 02:49:01 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2814916A4CE; Mon, 5 Jan 2004 02:49:01 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE13A43D41; Mon, 5 Jan 2004 02:48:59 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from freefall.freebsd.org (znerd@localhost [127.0.0.1]) i05AmxFR006900; Mon, 5 Jan 2004 02:48:59 -0800 (PST) (envelope-from znerd@freefall.freebsd.org) Received: (from znerd@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05Amxsr006896; Mon, 5 Jan 2004 02:48:59 -0800 (PST) (envelope-from znerd) Date: Mon, 5 Jan 2004 02:48:59 -0800 (PST) From: Ernst de Haan Message-Id: <200401051048.i05Amxsr006896@freefall.freebsd.org> To: znerd@FreeBSD.org, freebsd-bugs@FreeBSD.org, joe@FreeBSD.org Subject: Re: kern/59803: Wrong detection of/panic with Edimax USB 2.0 Cardbus host controller X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 10:49:01 -0000 Synopsis: Wrong detection of/panic with Edimax USB 2.0 Cardbus host controller Responsible-Changed-From-To: freebsd-bugs->joe Responsible-Changed-By: znerd Responsible-Changed-When: Mon Jan 5 02:48:50 PST 2004 Responsible-Changed-Why: Over to USB maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=59803 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 03:30:20 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C724C16A4CE for ; Mon, 5 Jan 2004 03:30:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CDDE43D45 for ; Mon, 5 Jan 2004 03:30:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i05BUJFR011861 for ; Mon, 5 Jan 2004 03:30:19 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05BUJms011859; Mon, 5 Jan 2004 03:30:19 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Jan 2004 03:30:19 -0800 (PST) Message-Id: <200401051130.i05BUJms011859@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: xdivac02@stud.fit.vutbr.cz Subject: Re: kern/60917: implementation of ata sleeping X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: xdivac02@stud.fit.vutbr.cz List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 11:30:20 -0000 The following reply was made to PR kern/60917; it has been noted by GNATS. From: xdivac02@stud.fit.vutbr.cz To: freebsd-gnats-submit@FreeBSD.org, xdivac02@stud.fit.vutbr.cz Cc: Subject: Re: kern/60917: implementation of ata sleeping Date: Mon, 5 Jan 2004 12:29:34 +0100 (CET) you hae to copy /sys/sys/ata.h to /usr/include/sys/ata.h (not included in this patch) From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 05:00:45 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E43016A4CE; Mon, 5 Jan 2004 05:00:45 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8391743D1F; Mon, 5 Jan 2004 05:00:44 -0800 (PST) (envelope-from matusita@FreeBSD.org) Received: from freefall.freebsd.org (matusita@localhost [127.0.0.1]) i05D0iFR021958; Mon, 5 Jan 2004 05:00:44 -0800 (PST) (envelope-from matusita@freefall.freebsd.org) Received: (from matusita@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05D0ivj021954; Mon, 5 Jan 2004 05:00:44 -0800 (PST) (envelope-from matusita) Date: Mon, 5 Jan 2004 05:00:44 -0800 (PST) From: Makoto Matsushita Message-Id: <200401051300.i05D0ivj021954@freefall.freebsd.org> To: matusita@FreeBSD.org, freebsd-bugs@FreeBSD.org, wollman@FreeBSD.org Subject: Re: kern/60889: 5.2RC2 - zero IP id change not effective for TCP, detrimental to security/privacy and maybe interoperation X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 13:00:45 -0000 Synopsis: 5.2RC2 - zero IP id change not effective for TCP, detrimental to security/privacy and maybe interoperation Responsible-Changed-From-To: freebsd-bugs->wollman Responsible-Changed-By: matusita Responsible-Changed-When: Mon Jan 5 04:58:43 PST 2004 Responsible-Changed-Why: Wollman, the originator says that the commit mentioned in this PR, was made by you. Would you please take care of this? http://www.freebsd.org/cgi/query-pr.cgi?pr=60889 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 05:00:55 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C61AF16A4CE for ; Mon, 5 Jan 2004 05:00:55 -0800 (PST) Received: from hal.kabsi.at (strange.kabsi.at [195.202.128.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id E796343D1D for ; Mon, 5 Jan 2004 05:00:52 -0800 (PST) (envelope-from mario88@kabsi.at) Received: from h062040159111.bad.cm.kabsi.at (h062040159111.bad.cm.kabsi.at [62.40.159.111]) by hal.kabsi.at (8.11.1/) with ESMTP id i05D0o00001868949 for ; Mon, 5 Jan 2004 14:00:51 +0100 (CET) From: Mario Sassmann To: freebsd-bugs@freebsd.org Date: Mon, 5 Jan 2004 14:01:02 +0100 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200401051401.02627.mario88@kabsi.at> Subject: buildworld RELENG_5_1 on 4.9 fails X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 13:00:55 -0000 I tryed to update to RELENG_5_1 on RELENG_4_9, but make buildworld failed (machine i386) cc -fpic -DPIC -O -pipe -march=pentium3 -DPTHREAD_KERNEL -I/usr/src/lib/libpthread/../libc/include -I/usr/src/lib/libpthread/thread -I/usr/src/lib/libpthread/../../include -I/usr/src/lib/libpthread/arch/i386/include -I/usr/src/lib/libpthread/sys -I/usr/src/lib/libpthread/../../libexec/rtld-elf -fno-builtin -D_LOCK_DEBUG -D_PTHREADS_INVARIANTS -Wall -c /usr/src/lib/libpthread/sys/lock.c -o lock.So building shared library libkse.so.1 thr_libc.So: In function `sigaction': thr_libc.So(.text+0x54): multiple definition of `_sigaction' thr_sigaction.So(.text+0x0): first defined here thr_libc.So: In function `sigprocmask': thr_libc.So(.text+0x34): multiple definition of `_sigprocmask' thr_sigprocmask.So(.text+0x0): first defined here *** Error code 1 Stop in /usr/src/lib/libpthread. *** Error code 1 Stop in /usr/src/lib. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 05:40:20 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D18E16A4CE for ; Mon, 5 Jan 2004 05:40:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A87843D58 for ; Mon, 5 Jan 2004 05:40:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i05DeIFR027434 for ; Mon, 5 Jan 2004 05:40:18 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05DeIDe027433; Mon, 5 Jan 2004 05:40:18 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Jan 2004 05:40:18 -0800 (PST) Message-Id: <200401051340.i05DeIDe027433@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Christian Wittenhorst Subject: Re: kern/60221: ATA system freezes during heavy loads X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Christian Wittenhorst List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 13:40:20 -0000 The following reply was made to PR kern/60221; it has been noted by GNATS. From: Christian Wittenhorst To: freebsd-gnats-submit@FreeBSD.org, kirk@strauser.com Cc: Subject: Re: kern/60221: ATA system freezes during heavy loads Date: Sun, 04 Jan 2004 11:28:41 +0000 Hi, it's me again... MAINTAINER: can you reassign this bug report to: "CRITICAL", please? I think this bug is "critical", indeed! I checked this on different machines. The bug seems systematic. I experienced this bug on all (=4) machines I installed 5.2RC on. This bug seems unrelated to kern/57174 (ata tagging), all machines have standard install and GENERIC kernel config with just SMP disabled! The same machines worked fine at 5.1/5.0! both ATA 0&1 crash: ATA channel 0: Master: ad0 ATA/ATAPI rev 4 Slave: no device present ATA channel 1: Master: ad2 ATA/ATAPI rev 5 Slave: no device present only ATA 0 crashed so far: ATA channel 0: Master: ad0 ATA/ATAPI rev 5 Slave: no device present ATA channel 1: Master: acd0 ATA/ATAPI rev 0 Slave: no device present only ATA 0 crashed so far: ATA channel 0: Master: ad0 ATA/ATAPI rev 6 Slave: no device present ATA channel 1: Master: acd0 ATA/ATAPI rev 0 Slave: no device present both ATA 0&1 crash: ATA channel 0: Master: ad0 ATA/ATAPI rev 6 Slave: no device present ATA channel 1: Master: ad2 ATA/ATAPI rev 6 Slave: acd0 ATA/ATAPI rev 0 I just "need" heavy io load over a longer time (>5 mins) to crash the ata system. I just rebuild bogofilter's spam databases to crash the machines: #/bin/sh for i in /mail/data/user/progon-net/Archive/Spam/2003-11/*. do echo $i bogofilter -c /etc/bogofilter.cf -s < $i done If you need more information, just drop an email... Best regards, Christian Wittenhorst From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 06:06:43 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 862A316A4CE; Mon, 5 Jan 2004 06:06:43 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D822C43D49; Mon, 5 Jan 2004 06:06:42 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from freefall.freebsd.org (simon@localhost [127.0.0.1]) i05E6gFR049867; Mon, 5 Jan 2004 06:06:42 -0800 (PST) (envelope-from simon@freefall.freebsd.org) Received: (from simon@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05E6gdo049863; Mon, 5 Jan 2004 06:06:42 -0800 (PST) (envelope-from simon) Date: Mon, 5 Jan 2004 06:06:42 -0800 (PST) From: "Simon L. Nielsen" Message-Id: <200401051406.i05E6gdo049863@freefall.freebsd.org> To: simon@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/60917: implementation of ata sleeping X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 14:06:43 -0000 Synopsis: implementation of ata sleeping Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: simon Responsible-Changed-When: Mon Jan 5 06:06:23 PST 2004 Responsible-Changed-Why: Over to ATA maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=60917 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 07:29:40 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9AB816A4CE for ; Mon, 5 Jan 2004 07:29:40 -0800 (PST) Received: from papagena.rockefeller.edu (user-0cdfenm.cable.mindspring.com [24.215.186.246]) by mx1.FreeBSD.org (Postfix) with SMTP id 653B343D3F for ; Mon, 5 Jan 2004 07:29:34 -0800 (PST) (envelope-from rsidd@online.fr) Received: (qmail 923 invoked by uid 1002); 5 Jan 2004 15:29:34 -0000 Date: Mon, 5 Jan 2004 10:29:34 -0500 From: Rahul Siddharthan To: David O'Brien Message-ID: <20040105152934.GA889@online.fr> References: <200401050039.i050dsji050045@freefall.freebsd.org> <1073278499.3ff8ee231258b@imp2-l.free.fr> <20040105063227.GA55403@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040105063227.GA55403@dragon.nuxi.com> X-Operating-System: Linux 2.4.23 i686 User-Agent: Mutt/1.5.4i cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/48116: Support for Synaptics touchpad X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 15:29:40 -0000 David O'Brien said on Jan 4, 2004 at 22:32:27: > ... > > Others pointed out issues with this patch too: see > > http://lists.freebsd.org/pipermail/freebsd-current/2004-January/017782.html > > As Philip Paeps philip+freebsd at paeps.cx points out there are problems > with the current version of the patch that prevent me from committing it. > Do you plan to address his issues (I hope so); or should I close the PR? I'll give it a try in the coming week. I'm not sure what I can do, it would be my first 'proper' kernel programming (as opposed to quick hacks), and I have only one machine to test it on. There seems to be some renewed interest on the list, so perhaps someone else will contribute a patch too. Thanks Rahul From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 09:45:41 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 880FF16A4CE; Mon, 5 Jan 2004 09:45:41 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCA9D43D2D; Mon, 5 Jan 2004 09:45:40 -0800 (PST) (envelope-from wollman@FreeBSD.org) Received: from freefall.freebsd.org (wollman@localhost [127.0.0.1]) i05HjeFR008565; Mon, 5 Jan 2004 09:45:40 -0800 (PST) (envelope-from wollman@freefall.freebsd.org) Received: (from wollman@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05Hjek5008561; Mon, 5 Jan 2004 09:45:40 -0800 (PST) (envelope-from wollman) Date: Mon, 5 Jan 2004 09:45:40 -0800 (PST) From: Garrett Wollman Message-Id: <200401051745.i05Hjek5008561@freefall.freebsd.org> To: wollman@FreeBSD.org, wollman@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/60889: 5.2RC2 - zero IP id change not effective for TCP, detrimental to security/privacy and maybe interoperation X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 17:45:41 -0000 Synopsis: 5.2RC2 - zero IP id change not effective for TCP, detrimental to security/privacy and maybe interoperation Responsible-Changed-From-To: wollman->freebsd-bugs Responsible-Changed-By: wollman Responsible-Changed-When: Mon Jan 5 09:44:48 PST 2004 Responsible-Changed-Why: Put this back in the pool. I have absolutely zero time to work on this right now. It may be easier to simply back out the change until the reason for the odd behavior on FIN segments is identified. http://www.freebsd.org/cgi/query-pr.cgi?pr=60889 From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 09:50:17 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EFDE16A4CE for ; Mon, 5 Jan 2004 09:50:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23DEA43D2F for ; Mon, 5 Jan 2004 09:50:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i05HoEFR008702 for ; Mon, 5 Jan 2004 09:50:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05HoDSw008701; Mon, 5 Jan 2004 09:50:13 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 5 Jan 2004 09:50:13 -0800 (PST) Resent-Message-Id: <200401051750.i05HoDSw008701@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Bacon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E751D16A4D0 for ; Mon, 5 Jan 2004 09:43:40 -0800 (PST) Received: from smithers.neuro.mcw.edu (smithers.neuro.mcw.edu [141.106.106.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CF5543D5C for ; Mon, 5 Jan 2004 09:43:19 -0800 (PST) (envelope-from bacon@smithers.neuro.mcw.edu) Received: from smithers.neuro.mcw.edu (localhost [127.0.0.1]) i05HhIXg051241 for ; Mon, 5 Jan 2004 11:43:18 -0600 (CST) (envelope-from bacon@smithers.neuro.mcw.edu) Received: (from bacon@localhost) by smithers.neuro.mcw.edu (8.12.9/8.12.9/Submit) id i05HhHKd051240; Mon, 5 Jan 2004 11:43:17 -0600 (CST) Message-Id: <200401051743.i05HhHKd051240@smithers.neuro.mcw.edu> Date: Mon, 5 Jan 2004 11:43:17 -0600 (CST) From: Jason Bacon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/60944: "file" identifies text files as "character Computer Graphics Metafile" X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jason Bacon List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 17:50:17 -0000 >Number: 60944 >Category: bin >Synopsis: "file" identifies text files as "character Computer Graphics Metafile" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jan 05 09:50:13 PST 2004 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: FreeBSD 5.1-RELEASE i386 >Organization: Medical College of Wisconsin >Environment: System: FreeBSD smithers.neuro.mcw.edu 5.1-RELEASE FreeBSD 5.1-RELEASE #0: Mon Dec 29 11:34:44 CST 2003 bacon@smithers.neuro.mcw.edu:/usr/obj/usr/src/sys/smithers i386 >Description: The "file" command incorrectly identifies certain text files as "character Computer Graphics Metafile". This occurs if the the file begins with the character `0' (hex 30) in byte 0 of the file, followed by a space (hex 20) in byte 1, which satisfies the magic number test 0 beshort 0x3020 character Computer Graphics Metafile in /usr/share/misc/magic. This problem subsequently affects apsfilter, which uses "file" to identify the file type, and hence disrupts printing of these text files using "lpr". >How-To-Repeat: Run "file" on any text file with a `0' in the first byte and a space in the second. >Fix: Workaround: Insert whitespace (or anything else suitable for the type of text file you have) before the first `0' of all your ascii data files in order to shift it forward from byte 0 in the file, and cause the above magic test to fail. Fix: Since ascii data files beginning with a `0' are common, this magic number test is risky and probably inappropriate, and should probably be removed from /usr/share/misc/magic. Of course, this will disable "file" from identifying a "character Computer Graphics Metafile". >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 11:00:46 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C476E16A4CE for ; Mon, 5 Jan 2004 11:00:46 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C485343D2F for ; Mon, 5 Jan 2004 11:00:44 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.10/8.12.10) with ESMTP id i05J0iFR015094 for ; Mon, 5 Jan 2004 11:00:44 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05J0iT0015088 for freebsd-bugs@freebsd.org; Mon, 5 Jan 2004 11:00:44 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 5 Jan 2004 11:00:44 -0800 (PST) Message-Id: <200401051900.i05J0iT0015088@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: open PR's (mis)filed to gnats-admin and in limbo X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 19:00:46 -0000 Current FreeBSD problem reports No matches to your query From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 11:02:48 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92AF316A4CE for ; Mon, 5 Jan 2004 11:02:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C52B43D1D for ; Mon, 5 Jan 2004 11:00:50 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.10/8.12.10) with ESMTP id i05J0oFR015108 for ; Mon, 5 Jan 2004 11:00:50 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i05J0iKW015099 for freebsd-bugs@freebsd.org; Mon, 5 Jan 2004 11:00:44 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 5 Jan 2004 11:00:44 -0800 (PST) Message-Id: <200401051900.i05J0iKW015099@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jan 2004 19:02:48 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/05/09] misc/18466 jwd install via nfs or ftp media silently tru o [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig f [2000/05/29] kern/18874 tjr 32bit NFS servers export wrong negative v o [2000/06/13] kern/19247 threads uthread_sigaction.c does not do anything o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A f [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] misc/23103 fenner lacks many ISO C99 features (NAN f [2000/11/27] i386/23145 brian pppoe-test-program panics the server o [2000/12/12] bin/23501 pw destroy /etc/master.passwd when pw exe a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA s [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number f [2001/05/11] kern/27275 kernel bug ? o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/15] ports/28995 max deMime produces blank line in header part o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause o [2001/08/18] kern/29844 standards [PATCH] setpgrp does not behave as manual o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro o [2001/09/27] bin/30869 dump does not dump all files of a filesys s [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard don´t work an o [2001/10/04] kern/31042 murray Device name conflict o [2001/10/14] misc/31266 cjc System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe fix crunchgen to work with more contrib-k o [2001/10/17] conf/31327 Fixes and improvements for rc.diskless* s a [2001/10/31] i386/31671 doc 4.4 installer hangs at " Mounting root fr o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi f [2001/12/11] kern/32713 joe usb mouse detaches from hub and doesnt re a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea p [2001/12/27] gnu/33262 mp gdb does not handle pending signals corre o [2002/01/07] bin/33670 dwmalone default inetd install allows for unlimite o [2002/01/16] kern/33951 threads pthread_cancel is ignored o [2002/01/18] bin/34028 brian userland ppp o [2002/01/19] kern/34067 n_hibma Reproducable crash on usb ugen o [2002/01/19] kern/34071 pcn-driver is sort-of-broken in 4.5RC2 (a o [2002/01/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o f [2002/02/26] kern/35354 andre 4.4/4.5 FreeBSD causes hard lock after 20 o [2002/03/01] kern/35466 imp xe driver can not read CIS tuples o [2002/03/06] i386/35615 sound ES1978 Maestro 2E sound card locks up mac o [2002/03/09] conf/35726 andre Won't let me use ifconfig on the interfac o [2002/03/29] kern/36504 crash/panic vm_object_allocate under file f [2002/04/07] i386/36850 joe Page Fault using ppp with USB Modem o [2002/04/14] kern/37064 imp System hangs when removing wire of NIC D- o [2002/05/13] bin/38058 brian ppp alters IP header length field 40 -> 4 o [2002/05/14] kern/38070 4.6-PRERELEASE panics on resume on Fujits f [2002/05/23] i386/38459 mux Intel SB82558B NIC won't initialize prope o [2002/05/23] i386/38484 probe freeze o [2002/05/24] conf/38518 combination of pr-27087 and pr-36911 (2) a [2002/05/26] gnu/38594 kan Fortan program don't link post gcc-3.1 o [2002/05/28] bin/38676 change request for pw command o [2002/05/30] misc/38748 qa FreeBSD 4.5 Keyboard problem cannot insta o [2002/05/30] misc/38748 qa FreeBSD 4.5 Keyboard problem cannot insta o [2002/06/03] kern/38872 nfs code ignores possibility of MGET(M_WA o [2002/06/08] kern/39043 Corrupted files on a FAT32 partition f [2002/06/15] misc/39341 joe ppp + USB modem problem o [2002/06/29] kern/40003 Panic on boot w/4.6 and 4.6-stable from 6 o [2002/07/05] bin/40215 wpaul NIS host search not terminate o [2002/07/14] misc/40575 qa Kern.flp boot floppy error o [2002/07/14] misc/40575 qa Kern.flp boot floppy error o [2002/08/05] bin/41350 vnconfig: apparent off-by-one bug o [2002/08/07] kern/41402 kernal panics o [2002/08/07] misc/41425 adding new cpu types to bsd.cpu.mk f [2002/08/08] i386/41437 qa sysinstall 4.6 RELEASE - hang f [2002/08/08] i386/41437 qa sysinstall 4.6 RELEASE - hang o [2002/08/10] ports/41513 tobez lang/perl5.8 - "make test" destroys perl a [2002/08/13] bin/41647 bms ifconfig doesn't accept lladdr along with o [2002/08/16] kern/41717 bms Memory Leak in FreeBSD o [2002/08/16] i386/41723 Copying files to filesystem causes "integ a [2002/08/18] kern/41765 rwatson UDP socket remains connected after error p [2002/08/19] misc/41792 tjr lseek after ftruncate fails f [2002/08/21] i386/41860 qa sysinstall rel. 4.5 and 4.6 hangs f [2002/08/21] i386/41860 qa sysinstall rel. 4.5 and 4.6 hangs o [2002/08/22] java/41913 java JniHandler and ChannelUn Errors f [2002/08/26] kern/42030 bms panic when zebra works on detaching tun i o [2002/08/26] i386/42046 System crashes with o [2002/08/29] i386/42173 sound Sony VAIO FXA 53 (or FXA 679 in Mexico) w o [2002/08/30] kern/42198 Kernel panics or system hangs up with big f [2002/08/30] misc/42221 qa Signal 11 core dumped when fetchin index f [2002/08/30] misc/42221 qa Signal 11 core dumped when fetchin index f [2002/08/30] kern/42235 system panics with "worklist_remove: item p [2002/09/09] kern/42580 robert kernel crash when starting ISC 3.2 X11 bi p [2002/09/14] bin/42772 usr.bin/make: patch to stop a fork bomb o [2002/09/15] kern/42796 NCR/SYM 53C825 driver detects scsi cdrom f [2002/09/18] ports/42921 nork archivers/rpm/work/rpm-3.0.6/lib/rpmlead. s [2002/09/18] kern/42937 bms panic when ARP cache uses up all mbufs o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp o [2002/09/29] i386/43491 microuptime () went backwards o [2002/10/02] misc/43576 imp Problem with wi driver and Lucent Orinoco o [2002/10/02] kern/43614 Installation Hangs at "md1: Malloc disk" o [2002/10/03] kern/43625 imp Wi(4) driver hangs after long data transf o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/11] kern/43954 nfs-blocked process can't return or be in o [2002/10/17] kern/44198 njl Toshiba PDR-M25 camera/umass o [2002/10/21] kern/44336 NFSv3 client broken - security problem wi o [2002/10/25] misc/44471 qa 4.6 install writes MBR even when specifie o [2002/10/25] misc/44471 qa 4.6 install writes MBR even when specifie o [2002/10/28] kern/44569 Kernel crash o [2002/10/30] kern/44744 VN devices can hang system FreeBSD v4.5 o [2002/11/01] bin/44808 opiepasswd makes bad seed for existing us o [2002/11/04] kern/44884 imp pcic is broken in current o [2002/11/17] i386/45383 Failed installation FreeBSD 4.7-RELEASE a o [2002/11/21] kern/45568 gibbs ahc(A19160) pci parity error o [2002/12/08] i386/46113 busspace bug f [2002/12/20] kern/46392 grog kernel, vinum, umount, changing user mode f [2002/12/23] kern/46490 andre xl driver generates lots of interrupts wi f [2002/12/23] i386/46506 joe Crash Before Initialization of Printer? o o [2003/01/08] kern/46865 kernel panic on SuperMicro 6012-8P box o [2003/01/08] bin/46866 NIS-based getpwent() falsely returns NULL o [2003/01/17] kern/47167 5.0 RC 3 (and 2) has 1 second uptime on T o [2003/01/21] i386/47295 kernel panic during FreeBSD 5.0 installat o [2003/01/22] bin/47384 qa sysinstall ignores intended destination d o [2003/01/22] bin/47384 qa sysinstall ignores intended destination d o [2003/01/27] bin/47538 tar buggy on memory disk partitions o [2003/01/27] kern/47544 iir does not detect direct access drives o [2003/02/05] i386/47989 5.0-RELEASE install CD kernel panic s [2003/02/06] kern/48028 panicstr: union: missing upper layer in w o [2003/02/06] kern/48029 Fatal trap 12: page fault while in kernel o [2003/02/07] kern/48039 Fatal trap 12: page fault while in kernel o [2003/02/08] kern/48092 Fatal trap 12: page fault while in kernel o [2003/02/08] kern/48100 Fatal panic in vm_map_lookup_entry ... o [2003/02/10] kern/48166 panic: pmap_new_proc: u_map allocation fa o [2003/02/14] i386/48274 FreeBSD 4.7-RELEASE doesn't work on Toshi o [2003/02/16] bin/48341 qa Sysinstall deletes mbr although it should o [2003/02/16] bin/48341 qa Sysinstall deletes mbr although it should o [2003/02/17] kern/48369 ext2fs no-go in FreeBSD 5 (regression ove o [2003/02/25] kern/48667 FreeBSD hangs o [2003/02/25] kern/48691 kernel panics on ASUS A7N266-VM Motherboa a [2003/03/02] kern/48849 joe Maxtor XT5000 causes panic in boot o [2003/03/13] i386/49978 installation problem on Acer Altos G300 o [2003/03/23] kern/50229 FreeBSD detects laptop drive geometries i o [2003/04/24] i386/51338 sound random system hangs; system hangs because o [2003/04/30] bin/51628 ypmatch doesn't match keys in legacy NIS o [2003/05/03] kern/51742 ffs_vfree: freeing free inode o [2003/05/16] ports/52346 obrien Portupgrade of bash-2.05b.004 fails with o [2003/05/22] kern/52585 luigi Kernel panic with ipfw2 and syncookies f [2003/05/22] i386/52593 mdodd Kernel panic when starting apm o [2003/05/25] i386/52668 i386 AIC7902 problem when large data transferr f [2003/05/27] kern/52718 jeffr changes to kern_umtx.c causes panic in ca s [2003/05/27] kern/52745 Fatal trap 12: page fault while in kernel o [2003/06/01] i386/52835 pdeuskar em driver does not work with mobile-chips o [2003/06/03] kern/52916 grog vinum causes panic after start/stop/... c p [2003/06/06] kern/53004 das union_lookup returning . (0xbc332e90) not o [2003/06/07] kern/53010 FreeBSD-CURRENT cannot use 2940 UW on SNI o [2003/06/11] kern/53195 rwatson Easily reproduceable mac_lomac panic o [2003/06/11] i386/53203 i386 "BTX halted" when attempting install of 5 o [2003/06/15] kern/53350 fill up a malloc md-disk on 5.1-R causes o [2003/06/17] kern/53416 kmem_map too small after around 12 hours. o [2003/06/17] kern/53433 heavy i/o on GBDE partition on SMP locks o [2003/06/22] i386/53620 i386 Kernel panics / reboots during install of o [2003/06/28] ports/53874 ports-bugs /usr/ports/emulators/linux_base isn't wor s [2003/07/08] kern/54211 rwatson Seeing other uid with kern.file sysctl. o [2003/07/08] ports/54230 ports-bugs fsck_ext2fs is broken (unable to perform o [2003/07/13] java/54463 glewis Apparent bug in jdk13 f [2003/07/16] kern/54549 panic on install on Dell 600sc o [2003/07/18] kern/54616 thomas System hangs writing CD-Rs with "atapicam o [2003/07/18] kern/54626 imp Some PC Cards cause NEWCARD to panic on c o [2003/07/29] kern/55028 The broken FAT12 filesystem causes system o [2003/07/30] ports/55039 sada Japanese fonts are not visible with mozil o [2003/08/01] ports/55147 openoffice Openoffice build failure a [2003/08/14] kern/55587 joe null dereference in usbdi.c: usb_transfer o [2003/08/25] kern/55975 thomas ATAPICAM- READ_6(0x08) fails for ATAPI ta o [2003/09/03] kern/56381 panic: page fault in fifo_close() ... o [2003/09/05] bin/56502 initstate() causes memory corruption on L o [2003/09/07] kern/56583 thomas panic at writting DVD-RAM after ATAng o [2003/09/09] kern/56659 ACPI trouble on IBM ThinkPad X31 o [2003/09/14] kern/56873 qa system hangs on boot at Buslogic device o [2003/09/16] i386/56933 i386 kernel panic vm_page_remove o [2003/09/16] i386/56937 i386 system panic during high network load o [2003/09/18] kern/56973 SCSI errors from on-board Adaptec (AIC7xx o [2003/09/20] kern/57036 No media detected by 3c905b-tx on 4.9-rel o [2003/09/20] i386/57043 i386 ar driver with 2 port PCI card locks up w o [2003/09/22] i386/57097 i386 Promise Ultra 100 TX2 causes lockup on SM o [2003/09/24] kern/57156 GEOM-related panic while boot on latest - o [2003/09/28] bin/57315 so Safe.pm security hole in 4.x base system' o [2003/09/28] bin/57321 markm CGI.pm in 4.x base system has a cross-sit o [2003/09/28] ports/57336 mbr FrontPage publishing failure with mod_fro a [2003/09/29] kern/57344 bms KMEM exhaustion from cloned routes o [2003/09/29] kern/57369 sos 4.9-PRERELEASE panic during ata probe o [2003/09/30] i386/57398 i386 Current fails to install on mly(4) based o [2003/10/01] kern/57453 if_kue hangs boot after warm boot if firm p [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' o [2003/10/05] kern/57603 alex new bktr driver: freeze on SMP machine o [2003/10/05] kern/57606 thomas ATAng: Can't write CD media on 5.1-CURREN o [2003/10/05] i386/57632 i386 Dell PowerEdge 4300 is allergic to FreeBS o [2003/10/07] kern/57730 darrenr ipl.ko should be compiled with IPv6 funct o [2003/10/08] kern/57736 darrenr IP Filter IPv6 accounting bug o [2003/10/08] bin/57738 darrenr [PATCH] ipmon IPv6 packet total size mis- o [2003/10/10] kern/57829 njl ACPI problems (Battery, Mouse probe) o [2003/10/10] kern/57832 softdep_deallocate_dependencies: dangling o [2003/10/12] i386/57881 i386 ripping audio CDs causes kernel panic f [2003/10/15] kern/58107 sos -CURRENT fails to detect ATA devices o [2003/10/16] kern/58139 -CURRENT panics on Thinkpad A31p while co s [2003/10/18] kern/58228 sos atacontrol rebuild always panics s [2003/10/18] kern/58230 sos ata raid crashes in g_down o [2003/10/21] kern/58353 Can't burn DVD media with Pioneer DVR-106 o [2003/10/22] kern/58391 grog Trap 12 with heavy disk load on ide vinum o [2003/10/24] i386/58493 i386 machine page faults for no apparent reaso o [2003/10/25] ports/58514 sumikawa net/zebra based software BGP routers may o [2003/10/26] kern/58587 sos ATAng 5.x pio underrun dispite code preve f [2003/10/27] ports/58602 pav web2ldap-0.10.4 doesn't work on FreeBSD 5 f [2003/10/28] kern/58652 kernel boot fails with pcf device o [2003/10/31] kern/58787 peter panic: pmap_enter: attemped pmap_enter on o [2003/11/02] ports/58853 portmgr bsd.port.mk - MASTER_SITE_SUBDIR grouping p [2003/11/04] bin/58912 dump fails on big directories with nodump f [2003/11/05] kern/58985 -CURRENT kernel hangs on booting after re o [2003/11/07] kern/59043 Memory leak when reading from ATAPI/CAM D o [2003/11/09] bin/59095 tar(1) process hangs in endless loop o [2003/11/09] kern/59103 Serious data corruiption reading compact a [2003/11/12] kern/59211 tjr System crashes when moving files from NWF o [2003/11/13] i386/59253 i386 ata device reset hangs if device is dead o [2003/11/13] kern/59260 Panic by integer divide fault in Thinkpad o [2003/11/14] kern/59290 joe [PATCH] attaching more than one of the sa f [2003/11/16] ports/59360 ports-bugs port logjam2 does not compile o [2003/11/19] ports/59493 portmgr The ports system doesn't or can't honor N f [2003/11/22] kern/59594 I/O operations freeze system when perform o [2003/11/25] i386/59683 i386 panic signal 12 4.9-STABLE - frequent cra o [2003/11/25] kern/59687 joe Broken USB with 5.x on ASUS A7V8X-X o [2003/11/25] kern/59688 panic: _sx_xlock (GEOM topology): xlock a o [2003/11/26] amd64/59713 amd64 1000ms rtt u o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/08/10] kern/7556 hm sl_compress_init() will fail if called an o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/11/10] bin/8646 peter Implement rlogind -a option f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g s [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/03/02] bin/10353 jon ypserv gets segmentation violation o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec a [1999/04/08] misc/11024 mtm getpwnam(3) uses incorrect #define to lim o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 rwatson RLIMIT_NPROC works unadequately for jails s [1999/10/04] i386/14135 doc lpt1 nolonger exists after 3.2-RELEASE o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie s [1999/11/12] kern/14848 murray Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P f [1999/12/26] kern/15707 bms bad trap in mprotect o [2000/01/01] kern/15825 Softupdates gets behind, runs the system o [2000/01/02] i386/15845 imp Driver for RealTek 8029 f [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s o [2000/01/12] kern/16090 mdodd No buffer space available a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table o [2000/02/25] misc/16991 jhb booting install disk and USB s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 mbr 100/10baseT card resets under load s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia f [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota tags o [2000/07/19] kern/20040 jhb Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons p [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 perky Termios timeout parameters, VMIN, VTIME, f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] misc/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 bde Support for PCI multiport cards for sio d o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/26] misc/20861 threads libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 mp gdb does not recognise old executables. o [2000/08/30] bin/20952 des ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault a [2000/09/15] kern/21304 mbr dc0 watchdog timeouts on NetGear FA310TX s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/21] kern/21463 emulation Linux compatability mode should not allow f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde o [2000/10/02] ports/21714 ports-bugs audio problem with games/nil o [2000/10/05] kern/21771 murray Fix for sppp and Cronyx drivers update a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/19] kern/22142 cjc securelevel does not affect mount o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/13] kern/22826 emulation Memory limits have no effect in linux com o [2000/11/14] bin/22846 andre Routed does not reflect preference of Int o [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB o [2000/11/25] bin/23098 ambrisko If installing on a serial console, enable o [2000/12/08] kern/23400 guido IPsec transport mode precludes filtering o [2000/12/12] kern/23515 get error in messages system log "Dec 11 o [2000/12/13] kern/23535 imp 4.x kernels seem to no longer support Ada o [2000/12/14] misc/23561 emulation Linux compatibility mode does not support o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2001/01/02] kern/24032 markm rndcontrol and pccardd use of interupt ha o [2001/01/03] kern/24059 n_hibma USB support broken in SMP kernel o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be o [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/19] bin/24461 pirzyk Being able to increase the YP timeout wit o [2001/01/19] bin/24472 threads libc_r does not honor SO_SNDTIMEO/SO_RCVT s [2001/01/23] misc/24590 standards timezone function not compatible witn Sin o [2001/01/25] kern/24629 ng_socket failes to declare connected dat o [2001/01/25] bin/24632 threads libc_r delicate deviation from libc in ha o [2001/01/25] misc/24641 threads pthread_rwlock_rdlock can deadlock o [2001/02/09] kern/24982 iedowse stack gap usage o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/11] ports/25007 max telnetx problem on 4.x o [2001/02/12] kern/25038 murray dhcp client could not set hostname on boo o [2001/02/13] kern/25067 adrian able to mount a pathname > 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ f [2001/02/19] kern/25213 andre Bus abstraction interface doesn't allow p o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/02/21] ports/25272 rse Using lang/eperl as cgi/nph binary execut s [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/05] bin/25542 standards /bin/sh: null char in quoted string o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo p [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc o [2001/03/19] bin/25929 qa Can't use MAKEDEV in fixit mount o [2001/03/22] kern/25986 andre Socket would hang at LAST_ACK forever. o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c o [2001/03/22] kern/26013 joe Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts a [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem o [2001/03/28] kern/26171 emulation not work Linux-emulator, but hi is work i o [2001/03/31] i386/26261 silo overflow problem in sio driver o [2001/04/02] bin/26307 threads libc_r aborts when using the KDE media pl o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/03] misc/26320 alfred mountd breaks IRIX automounter a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/12] kern/26506 sendto() syscall returns EINVAL in jail e o [2001/04/25] bin/26842 dd dump with h flag takes a very long time a [2001/04/25] bin/26869 sheldonh vi(1) crashes in viewing a file with long o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter p [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP s [2001/05/22] kern/27543 pirzyk /proc/cpuinfo does not handle SMP hosts o [2001/05/23] docs/27605 doc Cross-document references () o [2001/05/27] kern/27694 cg Panic in csa(4) f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u a [2001/06/05] misc/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 yar ftpd doesn't honor invalid shelll in logi o [2001/06/20] bin/28311 des ftpd and sshd do not honor expired pw ent a [2001/06/24] ports/28398 mita japanese/dvi2ps cannot find tex.pro o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/07] i386/28802 joe 3com Performance Pro modem conflicts with o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys f [2001/07/11] ports/28889 lioux mail/qpopper 4.0.3 error: Insufficient ro o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/16] bin/29026 pb traceroute -s option allows any IP addres o [2001/07/18] i386/29067 sound Yamaha OPL3Sa2 pcm/pnp bug o [2001/07/19] ports/29098 jedgar p5-Mysql port references wrong directory f [2001/07/23] kern/29170 ru ARP request fails after "bad gateway valu o [2001/07/26] bin/29253 ru natd forgets about udp connections o [2001/08/01] i386/29375 qa the disk editor used by /stand/sysinstall o [2001/08/01] i386/29375 qa the disk editor used by /stand/sysinstall o [2001/08/01] i386/29377 imp pccard hangs during probe when returning o [2001/08/03] kern/29421 Update a file with mmap will cause mtime/ o [2001/08/04] kern/29465 sound Can't probe NeoMagic 256AX audio chip. f [2001/08/11] kern/29626 ifconfig causes kernel panic in 4.4-PRERE o [2001/08/13] kern/29686 jlemon kevent EV_ADD EVFILT_WRITE does the wrong o [2001/08/14] ports/29704 bp Imagemagick Identify utility crashes when o [2001/08/15] bin/29725 dwmalone [PATCH] Fixed segmentation fault in simpl o [2001/08/17] bin/29808 ypserv dumps core in yp_find_db o [2001/08/17] i386/29809 rsm pb Xircom Eth Card with Freebsd 4.4RC1 : o [2001/08/19] i386/29882 peter stable 4.3 kernel compile fails for multi o [2001/08/20] bin/29903 ypbind loses connection to NIS master and o [2001/08/23] kern/29983 imp Problem with "TI PCI-1250 PCI-CardBus Bri o [2001/08/24] kern/30049 imp [f: 4.4] Bad iomem assigned in some cases o [2001/08/27] kern/30125 btx/bootloader dumps very often if serial o [2001/08/30] kern/30223 Using /usr/share/examples/kld/cdev, testc o [2001/08/30] kern/30230 md cannot o [2001/08/31] bin/30235 /usr/sbin/portmap cannot listen to localh o [2001/08/31] kern/30241 gibbs System crash w/err: AHC0; AHC_INTR - refe o [2001/09/02] i386/30276 CPUTYPE=486 built on a CPUTYPE=p3 WORLD b o [2001/09/04] bin/30310 top does not show CPU usage o [2001/09/06] misc/30373 joe Logitech IFeel Optical USB mouse does not o [2001/09/06] conf/30399 Have Fortran use the CPUTYPE variable o [2001/09/10] kern/30482 calcru calls printf while holding a spin o [2001/09/10] alpha/30486 alpha AlphaServer DS10 floppy access is broken o [2001/09/10] alpha/30487 alpha Floppy access on AlphaServer DS20 solid l o [2001/09/10] ports/30490 sobomax yacc in world does NOT fully respect TMPD f [2001/09/10] kern/30502 joe panics if logitech joystick usb attached o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio o [2001/09/15] kern/30592 roam [PATCH] panic: static sysctl oid too high o [2001/09/17] kern/30630 fenner Failure to check for existence of interfa o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/25] kern/30820 sound PCM sound fails o [2001/09/26] bin/30837 qa Sysinstall doesn't set the schg flag on t o [2001/09/26] bin/30837 qa Sysinstall doesn't set the schg flag on t o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up o [2001/10/01] kern/30958 rwatson QUOTA with 0 bytes in quota.user hangs up f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] kern/30971 peter NFS client modification time resolution i f [2001/10/02] ports/30993 iedowse xxgdb cannot open source file s [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/07] kern/31102 wpaul lge + Pentium III data transmission probl o [2001/10/18] misc/31363 qa sysinstall "partition editor" silently co o [2001/10/21] kern/31398 cg newpcm does not play back the tail of sou o [2001/10/26] ports/31511 obrien g++30 produces binaries which SIGBUS when o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. a [2001/10/31] kern/31659 joe USB controller driver will die after some o [2001/10/31] bin/31661 threads pthread_kill signal handler doesn't get s o [2001/11/01] bin/31692 2872-or-less-byte ftp binary transfer fro o [2001/11/03] kern/31746 failed connect(2) seems to cause problems f [2001/11/05] kern/31768 darrenr Use of fastroute in IPFilter reboots the o [2001/11/05] kern/31790 problem with NFS and jail() o [2001/11/07] ports/31819 jmz ports/ispell install doesn't work o [2001/11/07] bin/31835 mbr dhclient doesn't close FD's before spawni s [2001/11/09] ports/31893 des gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l o [2001/11/17] bin/32072 setuid w/o immutable flag o [2001/11/18] kern/32098 semctl() does not propagate permissions a [2001/11/19] kern/32118 mbr 21143 with dc driver will not select 10ba o [2001/11/19] ports/32121 x11 XFree86-4-Server: xf86cfg 4.1.0 writes ba o [2001/11/20] kern/32124 imp Cannot set 128 bit wep key on prism2 (wi0 o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/23] ports/32234 tobez Perl ports not $LOCALBASE clean o [2001/11/26] bin/32295 threads pthread dont dequeue signals o [2001/11/27] kern/32338 Network to disk write performance low und o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/10] kern/32668 peter NFS directory removal problems manifested f [2001/12/10] bin/32686 wosch locate command dumps a core file with bro o [2001/12/11] kern/32716 joe system hangs when running vid (usb webcam o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size f [2001/12/12] bin/32791 ru FreeBSD's man(1) utility vulnerable to ol o [2001/12/13] kern/32797 Problem with IPX and netgraph(4) o [2001/12/13] kern/32809 yet another panic while syncing disks aft f [2001/12/21] kern/33074 joe USB printer support does not detect print o [2001/12/21] ports/33080 ume gkrellmvolume interferes with the ability o [2001/12/22] kern/33085 jlemon Samba's NMBD cannot find alias interface o [2001/12/24] kern/33138 pnp problem in 4.3, 4.4, 4.5 o [2001/12/26] kern/33201 net/net_osdep.c:if_name is broken f [2001/12/26] misc/33213 ume rarpd fails to init IPv6 enabled interfac o [2001/12/30] kern/33344 memory leak in device resource config loa o [2001/12/30] misc/33370 qa Post configuration issue o [2001/12/30] misc/33370 qa Post configuration issue o [2002/01/02] kern/33464 soft update inconsistencies after system o [2002/01/03] bin/33515 amd incorrectly handles multi-homed nfs s o [2002/01/04] kern/33532 sound Playing audio on some soundcards with pcm o [2002/01/04] kern/33535 invalid kernel diagnostic while writing d f [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories f [2002/01/07] kern/33653 DSL PPPoE connection error on 4.5-PRERELE o [2002/01/07] misc/33672 sheldonh telnetd and mount_mfs signal handlers cal o [2002/01/09] kern/33738 argv == NULL is not handled correctly by o [2002/01/13] kern/33833 luigi Correct kernel config for 4.4-RELEASE is f [2002/01/13] kern/33839 joe usb0: host controller halted (involving A f [2002/01/15] ports/33927 linimon ja-dvipdfm port requires texmf/dvips/base o [2002/01/15] docs/33929 doc Section 15.15 of the FreeBSD Porter's Han o [2002/01/16] kern/33940 quotactl allows compromise gid-quotas o [2002/01/16] kern/33974 sound Can not record anything with emu10k1 on 4 o [2002/01/17] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] kern/34020 programs fail that poll(2) on fifos o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w s [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/23] kern/34205 njl detect USB memory device, But can not use o [2002/01/24] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [2002/01/25] i386/34267 semenu FreeBSD hangs and reboots when overloaded o [2002/01/25] bin/34269 fenner tcpdump -v incorectly identifies packets o [2002/01/25] misc/34270 man -k could be used to execute any comma f [2002/01/26] kern/34306 gibbs 4.5-RC panics on boot with half-supported o [2002/02/01] i386/34536 threads accept() blocks other threads o [2002/02/01] kern/34544 joe Kernel crash on fclose() of /dev/kbd1 whe o [2002/02/02] misc/34568 turning printer on and off hangs the comp o [2002/02/04] kern/34619 TCP - FINs with different sequence number p [2002/02/06] bin/34682 fenner scanf/sscanf doesn't understand %lld o [2002/02/09] kern/34765 darrenr Unloading the ipl.ko module will panic th o [2002/02/10] kern/34801 darrenr TCP window size bug (afflicting IP Filter o [2002/02/10] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm o [2002/02/17] kern/35061 joe After printing to HP Deskjet 656c USB pri o [2002/02/19] misc/35116 keyinfo reports root's keyinfo o [2002/02/20] kern/35136 luigi VLAN & bridging & MTU o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/25] bin/35307 standards standard include files are not standard c o [2002/02/25] misc/35310 des SSHing with expired password does not bri o [2002/02/26] misc/35350 Can't boot on ASUS TXP4 o [2002/02/26] kern/35351 sound emu10k1: no posibility to record sound. K o [2002/02/26] ports/35353 green cfs strips eighth bit of file name on "ou o [2002/02/27] kern/35396 poll(2) doesn't set POLLERR for failed co o [2002/02/28] kern/35399 poll(2) botches revents on dropped socket o [2002/02/28] kern/35429 select(2)/poll(2)/kevent(2) can't/don't n o [2002/02/28] kern/35442 Problem transmitting runts in if_sis driv o [2002/03/03] misc/35506 innetgr() doesn't match wildcard fields i f [2002/03/03] kern/35511 bms sis(4) multicast filtering doesn't pass s o [2002/03/07] bin/35622 threads sigaltstack is missing in libc_r f [2002/03/07] kern/35645 bms Layer 2 switching using default router of o [2002/03/07] misc/35662 send-pr and/or web pr query system screws o [2002/03/08] kern/35669 NFSROOT breaks without a gateway s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for f [2002/03/08] kern/35691 mbr Realtek NIC driver does not work with Rea o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/10] kern/35756 joe USB reattach of Sony DSC-S75 fails, USB s o [2002/03/11] misc/35774 [SECURITY] Suboptimal auditing possibilit o [2002/03/13] bin/35843 maxim [PATCH] MD5 auth implemented in routed is o [2002/03/13] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/13] conf/35880 rc files could be a bit more jail friendl p [2002/03/15] bin/35921 jon Wrong path reduction of dot-dot paths in o [2002/03/15] bin/35925 fixit floppy cannot be mounted on USB dri a [2002/03/16] kern/35985 re swap double mount o [2002/03/16] kern/35986 Wrong bpf-header preceading packet when u o [2002/03/17] i386/36003 Cyclades Cyclom YeP causes panics on Free p [2002/03/17] kern/36038 bp sendfile(2) on smbfs fails, exposes kerne o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup o [2002/03/20] kern/36147 bogus irq 7 message being issued o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/03/22] kern/36219 poll() behaves erratic on BPF file descri o [2002/03/28] kern/36415 roger the bktr driver incorrectly handles the s a [2002/03/28] i386/36451 roger (sys/dev/bktr) Japan IF frequency is inco o [2002/03/29] kern/36482 Multiport starfire card (sf/ukphy) doesn' o [2002/03/29] conf/36508 qa installation floppy bug (See description) o [2002/03/29] conf/36508 qa installation floppy bug (See description) o [2002/03/29] i386/36517 sis driver can't map ports/memory for Net o [2002/03/31] kern/36566 System reboot with dead smb mount and umo o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/07] bin/36867 games/fortune: add FORTUNE_PATH env var, o [2002/04/08] ports/36879 mbr emulators/vmware2 freezes and reboots sys o [2002/04/08] conf/36911 qa installation floppies miss autoload file o [2002/04/08] conf/36911 qa installation floppies miss autoload file o [2002/04/09] bin/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/09] i386/36943 reboot hangs on Tyan Thunder K7 with SMP o [2002/04/11] misc/36999 2 Default Routes Created o [2002/04/11] ports/37006 dirk cdrecord in sysutils/cdrtools does not wo o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/15] kern/37109 Kernel refuses to assign unused IP to tun o [2002/04/18] i386/37240 EtherExpress16 not probed at boot o [2002/04/19] kern/37261 luigi kernel is not linking without "device eth o [2002/04/21] kern/37326 roger smbus/bktr crash when omitting "device ii o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/04/22] ports/37361 ports-bugs installing gcc30 port breaks devel/gettex o [2002/04/23] misc/37399 rsh does not work from Win 2k to freeBSD o [2002/04/24] kern/37436 accept dead loop when out of file descrip o [2002/04/24] kern/37441 ISA PNP parse problem o [2002/04/24] kern/37443 incorrect move pointer in environment str o [2002/04/26] i386/37482 sound Weird behaviour under relatively slow loa o [2002/04/27] kern/37502 NFS client ignores mtime.tv_usec for open o [2002/04/28] i386/37523 lock for bios16 call and vm86call o [2002/04/29] misc/37585 qa System hangs on install at probing device o [2002/04/29] misc/37585 qa System hangs on install at probing device o [2002/04/30] misc/37586 qa newfs failing in 5.0-DP1 initial install o [2002/04/30] misc/37586 qa newfs failing in 5.0-DP1 initial install o [2002/04/30] kern/37589 imp Kernel panics upon resume from zzz on my o [2002/05/01] kern/37635 joe USB ufm driver using major 200, although a [2002/05/01] kern/37656 robert Linux emulator 'Invalid Argument' error i o [2002/05/03] misc/37710 murray LAN interface in wrong state after attemp f [2002/05/05] misc/37775 netsmb/smb_subr.c needs opt_global.h in S o [2002/05/08] misc/37863 Configuration of X corrupts screen, and i o [2002/05/09] kern/37889 kernel panic when writing to a FAT32 part o [2002/05/12] kern/38011 rsm Fatal Trap 12 using Xircom CE2 in IBM 760 a [2002/05/12] java/38018 znerd ports/www/jakarta-tomcat4: make passing o a [2002/05/12] java/38020 znerd ports/www/jakarta-tomcat4: stop tomcat vi o [2002/05/14] kern/38095 bp vlan not supported with fxp f [2002/05/16] kern/38166 gad ipv6_gateway_enable="YES" breaks lpd o [2002/05/17] ports/38212 knu XFree86-4 and portupgrade get dependencie o [2002/05/24] kern/38495 soreceive fails to maintain invariant on s [2002/05/24] kern/38527 /dev/random does not obey O_NONBLOCK flag o [2002/05/25] kern/38549 threads the procces compiled whith pthread stoppe o [2002/05/25] kern/38554 changing interface ipaddress doesn't seem o [2002/05/26] misc/38582 qa sysinstall sets newfs flag after changing s [2002/05/27] ports/38602 ports-bugs x11-wm/tvtwm is confused about PREFIX o [2002/05/27] bin/38609 qa Sysinstall should know the size of the va o [2002/05/27] bin/38609 qa Sysinstall should know the size of the va o [2002/05/27] kern/38632 imp Loss of connection with wi cards o [2002/05/30] i386/38731 Freebsd doesn't support ( pdc20276 / Raid f [2002/05/30] kern/38736 joe kernel panic during memory stick removal o [2002/05/30] kern/38752 rn_walktree_from not halting at the right o [2002/05/31] bin/38765 peter CVS Daemon Vulnerability in 1.11.1p1 o [2002/06/01] kern/38794 sound ESS Solo driver truncates output o [2002/06/01] kern/38795 sound kldunload of snd_ess, snd_sb16, snd_sb8 p f [2002/06/02] misc/38835 qa sysinstall always installs crypto o [2002/06/04] kern/38894 Dell PowerEdge 4600 PCI Bus scan problems o [2002/06/04] kern/38906 calcru: negative time of o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/07] kern/38983 Kernel fails to access disk f [2002/06/10] misc/39104 sos The disc in your drive looks more like an o [2002/06/11] ports/39148 cy screen consumes 100% when run o [2002/06/11] ports/39149 ume ports/mail/cyrus-imapd: cyradm causes per o [2002/06/11] ports/39151 trevor acroread5 install fails o [2002/06/11] kern/39185 core dump binary in single user mode o [2002/06/13] kern/39233 NonConforming IPsec implementation from F o [2002/06/13] kern/39252 Syscons doesn't support 8-bit control cha o [2002/06/13] kern/39260 sound pcm0 locks on boot, Compaq Presario 1920 o [2002/06/15] kern/39329 '..' at mountpoint is subject to the perm o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/16] kern/39388 groudier ncr/sym drivers fail with 53c810 and more o [2002/06/18] ports/39479 cy Binary version of screen-3.9.11_1 in port o [2002/06/19] i386/39507 FreeBSD can't boot: BTX halted problem s [2002/06/19] i386/39536 FreeBSD default bootloader does not load o [2002/06/20] i386/39604 Install failure on HP Pavilion 310n - Una o [2002/06/21] i386/39633 Errors reported in schistory.c in syscons s [2002/06/22] ports/39660 portmgr add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DI o [2002/06/23] ports/39760 jedgar ports/math/rcalc is too old and contains o [2002/06/24] conf/39763 Can't get a correct MAC address for MELCO o [2002/06/24] ports/39788 mharo building proftpd in ports ignores WITH_MY o [2002/06/24] i386/39802 iBCS2 emulation fork process core dumps f [2002/06/24] kern/39805 joe 4.6R install panics with umass0 device co o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi f [2002/06/26] conf/39887 matusita /stand/sysinstall doesn't set sendmail_en o [2002/06/26] bin/39896 netmask 0xffffff00 no longer works in /et f [2002/06/27] bin/39918 brian Userland PPP - CHAP and PAP are swaped o [2002/06/27] bin/39922 threads [PATCH?] Threaded applications executed w o [2002/06/27] kern/39928 imp wi0 timeouts and hangs the system while s a [2002/06/27] kern/39937 bms ipstealth issue o [2002/06/27] bin/39940 /usr/sbin/periodic sends thousands of ema o [2002/06/29] misc/40001 grog vinum showing -2 drives after removing se o [2002/06/30] kern/40044 SMP kernel fails to boot on DELL 610 o [2002/07/01] i386/40073 rsm Xircom Realport Ether doesn't work in Tos o [2002/07/02] kern/40122 sound Device pcm stopps booting Kernel 4.6 o [2002/07/02] i386/40132 Enabling the joystick interface on es137x o [2002/07/03] kern/40139 darrenr ipfilter issue o [2002/07/03] ports/40167 bp mars_nwe does not report disk full errors o [2002/07/04] misc/40206 Can not assign alias to any POINTOPOINT i o [2002/07/05] bin/40219 [apm] apm breaks removable media o [2002/07/05] bin/40227 CVS client doesn't upload new files creat o [2002/07/06] misc/40260 qa sysinstall hangs up detecting devices (No o [2002/07/06] misc/40260 qa sysinstall hangs up detecting devices (No f [2002/07/06] i386/40274 "fxp: device timeout" errors during heavy o [2002/07/06] bin/40278 mktime returns -1 for certain dates/timez o [2002/07/07] bin/40282 /bin/kill has bad error checking for comm o [2002/07/09] kern/40394 if_tap driver hard coded permission check a [2002/07/11] bin/40466 pax may not handle correctly some tar arc o [2002/07/11] bin/40471 des chpass(1) -a option broken in CURRENT o [2002/07/14] kern/40558 UDP6 sockets do not receive responses of o [2002/07/14] kern/40561 jlemon TTCP does not work with IPv6 o [2002/07/14] kern/40574 sound NeoMagic soundcard detection on Gateway S o [2002/07/15] ports/40610 jmz Latex build "cannot find Hyphenation patt o [2002/07/16] bin/40656 qa patch: sysinstall: scripted deletion of s o [2002/07/16] bin/40656 qa patch: sysinstall: scripted deletion of s f [2002/07/16] ports/40672 ports-bugs wsoundserver defaults to using esound and o [2002/07/19] kern/40766 imp NEWCARD freeses system while card inserti o [2002/07/19] kern/40787 page fault while in kernel mode o [2002/07/19] kern/40792 joe signals lead to data loss on device ugen o [2002/07/22] ports/40886 ache www/apache13: pkpkg_delete apache-1.3.26_ o [2002/07/22] kern/40895 wierd kernel / device driver bug o [2002/07/23] i386/40945 FreeBSD can not support IBM ServeRAID4Lx o [2002/07/25] i386/40972 Stallion Multiport Serial Driver . o [2002/07/26] kern/41007 overfull traffic on third and fourth adap o [2002/07/29] kern/41125 adrian squid-2.4.STABLE7 loop on poll() - SMP ke o [2002/07/29] i386/41138 silby vr0 locks up on one hub, OK on another o [2002/07/31] kern/41216 Get "NFS append race" error o [2002/08/01] misc/41242 periodic scripts make unwarrented assumpt o [2002/08/03] bin/41297 mp {t,}csh backquote/braces expansion bug f [2002/08/04] bin/41327 jon skey decrementing but not authorizing wit o [2002/08/04] misc/41331 threads Pthread library open sets O_NONBLOCK flag o [2002/08/07] bin/41410 tjr /bin/sh bug on expanding $? in here-docum o [2002/08/07] bin/41435 mbr dhclient writes lease file that it can't o [2002/08/11] i386/41569 silo overflow o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie o [2002/08/16] kern/41720 if_nge_load=YES make system not bootable o [2002/08/16] kern/41740 grog vinum issues: page fault while rebuilding o [2002/08/18] i386/41757 qa sysinstall 4.6.x unstable f [2002/08/19] bin/41776 bms mrouted doesn't route multicast packets o [2002/08/19] bin/41777 /etc/periodic/daily/100.clean-disks remov o [2002/08/20] docs/41824 murray LANG is not documented in setlocale(3) o [2002/08/21] kern/41850 qa sysinstall fails to create root filesyste o [2002/08/21] kern/41850 qa sysinstall fails to create root filesyste o [2002/08/22] kern/41881 julian ng_device was not MFCed for 2 months o [2002/08/22] bin/41908 make: $? not always set o [2002/08/23] i386/41930 declaration clash for ffs() and ${CXX} o [2002/08/23] conf/41935 PPPoE problem with 3com device - 3c12 o [2002/08/24] kern/41966 audio/play: sblive, can cause "Device bu o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, o [2002/08/27] kern/42089 phk ntp_gettime returns time in wrong scale o [2002/08/27] bin/42093 ypbind hangs on NIC with the lowest scope o [2002/08/28] misc/42115 luigi PicoBSD: fix build script for 4.6-STABLE p [2002/08/30] kern/42216 rwatson simultaneous multiple server network fail o [2002/09/02] kern/42352 Impossible to set RCV timeout on a socket p [2002/09/02] bin/42356 uudecode -o doesn't work if piped o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/05] kern/42457 Hack to allow Linux Matlab to exit o [2002/09/06] bin/42484 jmallett ps: uprocp documented but not implemented o [2002/09/07] ports/42516 openoffice OpenOffice.org generate wrong WM_LOCALE_N o [2002/09/07] i386/42539 Fatal Trap 12 resulting from Conner Perip o [2002/09/08] kern/42564 sound record bug with emu10k1 driver o [2002/09/08] kern/42578 Using PCI serial cards (puc) in SMP machi o [2002/09/09] kern/42621 imp Dell Inspiron 5000e hangs when using Orin o [2002/09/10] kern/42638 sound CS4326/4327 (MSS) buggy output playing 11 f [2002/09/10] ports/42647 linimon port misc/pybliographer does not configur o [2002/09/11] kern/42652 error deleting r/o (by windows) files on o [2002/09/11] bin/42658 markm recompile /usr/src/libexec/telnetd and lo o [2002/09/12] ports/42713 wjv biology/emboss : problems building EMBASS o [2002/09/13] gnu/42726 cvs cvs -R pserver & val-tags: story continue o [2002/09/13] kern/42727 bms [PATCH] Wrong MTU in need-frag ICMP using o [2002/09/13] ports/42729 obrien bash manpage has /bin/bash as location fo o [2002/09/13] misc/42748 joe USB on hardware list does not work o [2002/09/13] i386/42750 Fdisk makes no difference between FAT32, o [2002/09/13] docs/42762 doc ppp.8 has no description of $env and ~use a [2002/09/14] ports/42777 openoffice OpenOffice install fails o [2002/09/14] ports/42783 steve open-motif port doesn't compile o [2002/09/14] i386/42784 imp pcmcia 16bit network card removal locks a o [2002/09/15] misc/42801 FreeBSD freezes when opening cuaa0 with a o [2002/09/15] i386/42806 VLANs do not work with fxp + catalyst as o [2002/09/20] kern/42983 imp wi0 sporadically freezes the system for 1 o [2002/09/20] kern/43151 Panic 20 seconds after resume o [2002/09/21] bin/43223 pirzyk getnetby{name|addr} broken for DNS lookup o [2002/09/23] ports/43301 steve mwm confused by mouse events following up o [2002/09/24] bin/43337 des fetch: -s fails if -4 or possibly other o o [2002/09/25] kern/43352 luigi ipfw aborts processing file/pipe when del f [2002/09/25] i386/43366 joe Cannot format media in USB floppy devices o [2002/09/28] www/43454 www Packages hard to find, often missing o [2002/09/28] kern/43462 joe copying files from olympus C-4040 digital o [2002/09/29] bin/43501 getpwnam, getpwuid fail when linking agai p [2002/10/01] alpha/43567 robert strtod() core dumps f [2002/10/02] kern/43580 njl QUIRK: PhotoClip USB Camera o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl o [2002/10/02] kern/43599 Balloc did not check mallocated pointer i a [2002/10/02] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/04] misc/43674 Able to bypass expired password o [2002/10/08] standards/43837wollman PKST (pakistan daylight time) changed fro o [2002/10/09] conf/43851 Colorado backup unit o [2002/10/09] i386/43852 4.7-RC "device timeout" problem a [2002/10/09] kern/43885 ken USB CDROM does not work with vmware 2.x o [2002/10/10] kern/43887 threads abnormal CPU useage when use pthread_mute o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/10/11] bin/43930 ldconfig calls bcopy with wrong size o [2002/10/11] kern/43953 Backport of BMC5703 drivers o [2002/10/12] kern/43984 rp driver does not support multiple PCI c o [2002/10/12] bin/43993 joe /usr/sbin/usbd does not handle an usb eve a [2002/10/13] kern/44030 VNode/Swap troubles o [2002/10/15] kern/44087 fatal kernel trap when ifconfig a inet6 i o [2002/10/15] kern/44126 lnc network hungup at large traffics on V o [2002/10/16] kern/44130 Enabled apm hangs up FreeBSD kernel on i8 s [2002/10/16] misc/44148 installworld in 4.7-STABLE does not insta f [2002/10/17] i386/44178 sound kldload of snd_emu10k1 locks system f [2002/10/17] ports/44192 edwin joe o [2002/10/18] kern/44202 -stable rp driver does not work with mult o [2002/10/19] conf/44263 imp Intel AnyPoint II Wireless Card Unrecogni p [2002/10/19] misc/44268 ache [PATCH] FreeBSD is missing lt_LT.ISO8859- o [2002/10/21] kern/44355 After deletion of an IPv6 alias, the rout o [2002/10/23] kern/44417 luigi ipfw layer2 rules are not checked for eth o [2002/10/26] i386/44497 NIC Lags? s [2002/10/26] bin/44504 mp tcsh-6.12.00's "source" command ignore co o [2002/10/26] kern/44512 sound pcm driver generates static half the time o [2002/10/26] kern/44514 X11 mouse pointer disappears upon suspend o [2002/10/27] bin/44518 yar ftpd does not show OPIE OTP challenge o [2002/10/27] bin/44519 yar ftpd.conf(5) contains references to ftpd( o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] bin/44567 darrenr ipfstat does not show IPv6 accounting inf o [2002/10/28] misc/44578 getnetgrent fails to read NIS netgroup ma o [2002/11/02] ports/44835 knu portupgrade vs. docproj dependencies o [2002/11/03] kern/44867 Frequent hard hangs on ASUS P4T-E/P4S-533 o [2002/11/05] kern/44936 ng_pppoe: relay session identifier does n o [2002/11/06] bin/44995 /usr/bin/limits thinks sbsize is number, o [2002/11/06] kern/45013 locking warnings in CURRENT o [2002/11/06] kern/45014 pdeuskar VLAN tag on frames received via em(4) are o [2002/11/06] kern/45023 flexlm does not run with linux-base-7, st o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog o [2002/11/13] bin/45272 dump/restore problem o [2002/11/14] docs/45303 doc Bug in PDF DocBook rendering o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/15] kern/45324 Re: 4.7 kernel does not find aha1 o [2002/11/17] kern/45373 mckusick softupdate / fs damaged after loss of pow o [2002/11/18] bin/45397 nectar Telnet dumps core when MAKE_KERBEROS5=yes o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ o [2002/11/19] bin/45478 tjr /bin/sh coredump o [2002/11/20] i386/45525 imp Dell Inspiron 7000 does not recognize PC- o [2002/11/20] bin/45529 hexdump core-dumps with certain args [PAT o [2002/11/21] i386/45558 mdconfig and msdosfs make fs writes hang o [2002/11/21] i386/45565 qa sysinstall: write error, filesystem full o [2002/11/21] i386/45565 qa sysinstall: write error, filesystem full f [2002/11/21] kern/45579 joe Panic from USB stack after device detach o [2002/11/24] kern/45673 sound PC98 internal CS4231A is mis-detected to o [2002/11/24] kern/45679 sound Cannot record except 8bit-mono with CS423 o [2002/11/24] kern/45682 sound Sometime failed to record/play with CS423 o [2002/11/25] kern/45713 emoore If you use the amr driver, it is impossib o [2002/11/25] bin/45721 darrenr ipfilter's flags and icmp-type processing o [2002/11/25] bin/45723 ls(1)'s wrong behaviour with not searchab o [2002/11/25] kern/45733 file descriptor flags and socket flags ou o [2002/11/26] i386/45773 Softboot causes autoconf failure on Broad o [2002/11/26] kern/45777 crashdump issue with too-small dumpdev o [2002/11/27] ports/45805 ports-bugs security/sfs does not build on Alpha a [2002/11/29] docs/45833 trhodes nsmb.conf man page o [2002/12/02] kern/45913 imp WaveLan driver problems with latest -CURR o [2002/12/03] ports/45972 tobez lang/perl5: Perl system() calls will hang o [2002/12/04] bin/45990 dwmalone top dumps core if specific errors in pass o [2002/12/04] bin/45995 markm Telnet fails to properly handle SIGPIPE o o [2002/12/05] i386/46017 smb mounts break /etc/periodic/weekly/310 o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/09] kern/46152 Panic in adw dumping to tape o [2002/12/10] kern/46176 joe umass causes kernel panic if device remov o [2002/12/11] i386/46194 5.0-RC1 kern floppy load fails on AMD K6- o [2002/12/11] www/46195 doc man page kadmind(8) not found at www.Free o [2002/12/12] kern/46226 darrenr 5.0-RC1 ipfilter module [ipl.ko] fails to o [2002/12/13] kern/46239 posix semaphore implementation errors o [2002/12/13] misc/46245 sound AC'97 is not supported on ABIT BW7 o [2002/12/17] ports/46322 tobez lang/perl5 - string '0' (zero) is not con s [2002/12/17] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2002/12/19] i386/46371 joe USB controller cannot be initialized on I o [2002/12/20] conf/46401 dougb [PATCH] /etc/rc.d/named doesn't create ch o [2002/12/22] i386/46484 System panics upon configuration of bge N o [2002/12/25] ports/46530 ports-bugs x11-toolkits/gtkada links against unexist o [2002/12/26] kern/46551 cbb driver hangs on Sony Vaio o [2002/12/26] ports/46554 tobez fix a regex bug dealing with utf8 strings o [2002/12/27] kern/46557 ipfw ipfw pipe show fails with lots of queues o [2002/12/28] kern/46576 FreeBSD 4.6 broke linux emulation install o [2002/12/29] kern/46618 joe USB (UHCI/ICH3) PALM connect/disconnect/c f [2002/12/29] kern/46619 njl Installation hangs on IBM Thinkpad T23 f [2002/12/31] i386/46646 sound snd_emu10k1.ko halting the system a [2002/12/31] kern/46647 silby Failure to initialize MII on 3Com NIC res o [2003/01/01] bin/46676 ru [PATCH] bsd.dep.mk restricts domain of ta o [2003/01/02] misc/46694 imp Getting DUP packets when in Promiscous mo o [2003/01/03] kern/46736 sound ISA audio CS4232 (HP Omnibook 5000C) work o [2003/01/04] bin/46761 hmp buffer overflow by strcpy() in natd's arg p [2003/01/09] misc/46902 tjr Error with mount_smbfs and 15 Char Netbio o [2003/01/10] ports/46964 ports-bugs Failure when running "make install" on ex f [2003/01/12] kern/47005 joe OHCI USB not noticing device detachments o [2003/01/14] kern/47061 Conflicting system headers illustrated by o [2003/01/16] kern/47152 pseudo-device ef in kernel does not creat o [2003/01/19] i386/47236 Console missing during bootup on Sony Pic o [2003/01/19] i386/47243 sound Onboard CMedia CMI8738 playback noise o [2003/01/20] ports/47245 znerd daemonctl scribbles over log file when si f [2003/01/20] kern/47255 5.0-RELEASE install boot floppies hang wi o [2003/01/20] kern/47279 IBM 370 hangs on reboot o [2003/01/20] kern/47286 device probing not verbose when using boo f [2003/01/21] ports/47303 wjv Update biology/p5-bioperl to latest relea o [2003/01/22] kern/47352 sound pcm/ac'97, dsp device busy f [2003/01/23] ports/47405 lev scribus could not save russian letters an o [2003/01/24] i386/47449 Thinkpad 755CD floppy boot fails f [2003/01/24] kern/47451 qa 5.0 GENERIC(sysinstall CD) locks during b f [2003/01/24] kern/47451 qa 5.0 GENERIC(sysinstall CD) locks during b f [2003/01/24] kern/47452 grog df(1) reports filesystem empty when it is o [2003/01/28] kern/47586 [PATCH] fix information-leak (mounts) in o [2003/01/29] kern/47628 trhodes msdosfs file corruption fix o [2003/01/29] i386/47647 init died with signal 6 o [2003/01/29] kern/47648 creating alias on ethernet interface caus f [2003/01/31] ports/47713 lioux multimedia/ffmpeg - "make deinstall reins f [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't f [2003/02/01] i386/47787 markm new 5.0 system without perl fails buildwo f [2003/02/02] ports/47807 knu ruby-bdb1 fails to install f [2003/02/02] kern/47813 bms pseudo-device gre doesn't appear to work o [2003/02/03] ports/47842 cy security/tripwire fails to build under CU o [2003/02/04] kern/47937 hw.ncpu and kern.smp.cpus duplicate same o [2003/02/05] kern/47939 5.0-Current freezes when bktr device is o f [2003/02/05] ports/47942 lioux qmail-tls MASTER_SITES and naming convent o [2003/02/05] i386/47951 rtld in ld.so will livelock in some circu o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele o [2003/02/07] kern/48033 FFS superblock flags are being ignored? o [2003/02/07] kern/48062 mckusick mount -o snapshot doesn't work on +100GB f [2003/02/09] kern/48116 Support for Synaptics touchpad o [2003/02/09] kern/48117 SMP machine hang during boot related to i o [2003/02/09] ports/48130 kris games/falconseye can't save games or bone a [2003/02/10] kern/48156 Bug in procfs(5) closed in jail. o [2003/02/11] gnu/48183 [patch] gdb on a corefile from a threaded o [2003/02/11] kern/48198 Non-jailed users can kill processes owned o [2003/02/13] bin/48271 bug with find's -delete option f [2003/02/14] kern/48279 Brooktre878 (bktr) may cause freeze o [2003/02/15] kern/48316 File size limit on NTFS filesystems o [2003/02/16] misc/48325 /etc/periodic/security/100.chksetuid does o [2003/02/16] kern/48338 sound pcm audio driver hogs /dev/dsp?.? o [2003/02/16] ports/48346 dwcjr samba-devel port thinks 5-CURRENT is SVR5 o [2003/02/16] kern/48359 joe SiS 5597/8 USB + uscanner breakage o [2003/02/17] bin/48378 brian [PATCH] User-PPP MTU/MRU - LCP Problem o [2003/02/17] kern/48393 mckusick ufs2 snapshot code bugs p [2003/02/18] bin/48424 Integer overflow in cksum(1) and sum(1) f o [2003/02/18] kern/48425 Tape drive EOT handling problems in 4.7 o [2003/02/19] misc/48461 murray $EDITOR on the fixit CD is wrong. o [2003/02/19] docs/48472 doc Documentation unreadable. f [2003/02/22] kern/48560 andre Panic in if_vlan.c on CURRENT o [2003/02/23] kern/48614 VESA VGA modes for syscons lock up machin o [2003/02/24] bin/48648 des FreeBSD 5/PAM: incorrect handling of spac o [2003/02/26] kern/48715 thomas atacontrol detach panics system when ATAP o [2003/02/26] bin/48730 sos burncd does not handle signals and causes o [2003/02/27] kern/48741 darrenr ipnat corrupts packets on gre interface w o [2003/02/27] kern/48752 freeze when installing 5.0 Release o [2003/02/27] kern/48758 kldunload if_{nic} can cause kernel panic o [2003/02/28] kern/48777 vidcontrol modes not restored on vt switc o [2003/03/01] ports/48803 kde KDE 3.1 (kxkb) break XKB configuration an o [2003/03/02] bin/48856 threads Setting SIGCHLD to SIG_IGN still leaves z o [2003/03/02] bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unr o [2003/03/03] misc/48881 [PATCH] The influence of /etc/start_ifnam o [2003/03/05] kern/48952 joe uscanner0 hangs o [2003/03/05] bin/48958 standards The type 'bool' has different sizes for C o [2003/03/07] kern/48996 Fatal trap 12 with incoming traffic from o [2003/03/08] kern/49040 problem mounting root; ffs_mountroot can' f [2003/03/09] bin/49048 [patch] ctm(1) does not check parent dire o [2003/03/09] ports/49056 trevor Festival fixes for newer GCCs [PATCH] o [2003/03/10] bin/49087 threads Signals lost in programs linked with libc o [2003/03/11] kern/49102 julian Resident set size calculation broken in 5 o [2003/03/13] misc/49984 des openSSH crashes while password based auth o [2003/03/15] ports/50042 mbr ports/www/mod_frontpage causes Bad System o [2003/03/16] ports/50062 knu portupgrade does not process directives f f [2003/03/17] ports/50083 lioux qpopper 4.0.5 tarball file permissions do a [2003/03/20] kern/50149 joe Using Alcatel SpeedTouch results in "usb0 o [2003/03/25] kern/50298 unlimited usage of AGP memory make system o [2003/03/27] kern/50348 joe On usb.ko unload usb and usbN devices are p [2003/03/28] bin/50384 robert pkg_version -v core-dumps when no package o [2003/03/29] ports/50417 phoenix www/mozilla-firebird does not respect /us o [2003/03/29] ports/50418 phoenix www/mozilla-firebird file "unix.js" links o [2003/04/02] kern/50541 scottl raidframe does not work o [2003/04/03] kern/50574 mbr dc driver incorrectly detects ADMtek chip o [2003/04/05] kern/50621 ume panic while TCP6 bind() f [2003/04/07] kern/50683 jhb fxp broken o [2003/04/07] ports/50694 lioux mail/qmail-ldap edit mismatch causes CLEA a [2003/04/08] bin/50733 threads buildworld won't build, because of linkin o [2003/04/08] kern/50741 scottl "wiring down SCSI devices" as described i p [2003/04/10] bin/50770 tjr popen in libc_r not threadsafe o [2003/04/10] ports/50795 ports-bugs misc/solfege does not function o [2003/04/11] kern/50827 [PATCH] no sane record locking on *nix. s [2003/04/11] ports/50844 ports-bugs MPlayer fails to build on Alpha s [2003/04/12] kern/50856 kernel panic if mounting /tmp as mfs with o [2003/04/12] i386/50887 MBR on kern.flp fails Compaq MBR validati o [2003/04/13] bin/50912 dwmalone Small syslogd & postfix incompatibility a o [2003/04/14] kern/50943 kernel panic to initialize NIC (Intel Pro o [2003/04/14] kern/50947 darrenr BUG: port eq 25 does not work anymore (po o [2003/04/15] ports/51007 dirk sysutils/cdrtools: cdda2wav rips glitches p [2003/04/17] misc/51085 ache FreeBSD is missing ja_JP.eucJP locale. o [2003/04/17] ports/51089 lioux net/dctc refuses to connect to any hub o [2003/04/18] ports/51128 ports-bugs It is not possible to build security/drwe o [2003/04/18] www/51135 www Problems with the mailing-lists search in o [2003/04/18] ports/51140 jedgar No documentation for the port databases/d o [2003/04/18] kern/51145 sound Audio Slows during Heavy I/O o [2003/04/18] misc/51146 qa Incorrect error message when configuring o [2003/04/19] bin/51171 /bin/sh has only 32-bit arithmetics that o [2003/04/21] standards/51209standards [PATCH] add a64l()/l64a/l64a_r functions o [2003/04/21] kern/51243 Deadlock via syscons o [2003/04/22] kern/51274 ipfw ipfw2 create dynamic rules with parent nu o [2003/04/22] ports/51281 tobez lang/perl5: broken way of upgrading perl5 o [2003/04/23] kern/51308 sound Creative SB32 doesn't work under CURRENT o [2003/04/23] kern/51309 rl driver problem on large file transfers o [2003/04/23] kern/51332 njl QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1F o [2003/04/23] ports/51334 edwin [New Port] devel/ZendOptimizer 2.1.0a f [2003/04/24] kern/51341 ipfw ipfw rule 'deny icmp from any to any icmp o [2003/04/24] kern/51352 panic: malloc(M_WAITOK) in interrupt cont o [2003/04/25] misc/51409 us.emacs.kbd doesn't have 'boot' o [2003/04/28] ports/51539 tobez lang/perl5: dual perl installation breaka o [2003/04/29] kern/51583 tjr [PATCH] allow to work with devices and so o [2003/05/02] kern/51685 Unbounded inode allocation causes kernel o [2003/05/02] ports/51711 ports-bugs /usr/ports/emulators/linux_base will not o [2003/05/02] ports/51714 ports-bugs emulators/linux_base port fails to instal o [2003/05/05] bin/51827 getaddrinfo() is broken with numeric serv s [2003/05/06] bin/51892 des can't ssh after su to different local use f [2003/05/07] bin/51927 bms routed(8) fails to use multicast with IFF o [2003/05/07] ports/51946 jedgar grub port looking for /dev/rfd0 o [2003/05/07] bin/51949 threads thread in accept cannot be cancelled o [2003/05/08] kern/51982 sio1: interrupt-level buffer overflows a [2003/05/11] ports/52068 openoffice portupgrade of editors/openoffice .org-1. f [2003/05/11] ports/52079 linimon vmware3 hangs when nmdm(4) is used as COM a [2003/05/11] ports/52087 openoffice error while building japanese/openoffice s [2003/05/12] kern/52110 FS corruption when using unionfs o [2003/05/12] kern/52128 Unable to floppy install on Toshiba Libre o [2003/05/14] kern/52260 sys/net/if.c:if_detach in FreeBSD4 forget o [2003/05/16] kern/52331 groudier 4.7 to 4.8-REL upgrade: SCSI disks on sym o [2003/05/16] bin/52343 NIS login problem on the server o [2003/05/18] i386/52392 i386 Password lengths over 8 chracters are ign o [2003/05/19] bin/52433 lines in /etc/group longer than 1024 char o [2003/05/19] kern/52445 Kernel panics when mounting floppy on MFS o [2003/05/20] kern/52490 ^T'ing a zombie causes 'calcru: negative o [2003/05/21] i386/52556 i386 Syskonnect SK9843SX, sk driver, MII not d o [2003/05/22] kern/52561 5.1-BETA install fails on Dell PowerEdge o [2003/05/22] i386/52581 i386 Boot loaders reading more than one sector o [2003/05/23] i386/52610 i386 MSI "655 max" (MS-6730, SiS 655/963) MB A o [2003/05/24] i386/52638 i386 SCSI U320 on SMP server won't run faster o [2003/05/27] i386/52724 njl crashes apparently due to a ACPI problem o [2003/05/27] bin/52743 /etc/ppp/ppp.linkup instability issues o [2003/05/28] kern/52756 4.8 RELEASE installer(generic kernel) sta o [2003/05/30] kern/52817 threads top(1) shows garbage for threaded process o [2003/05/30] kern/52818 vm_fault() calls vput() on shared-locked o [2003/05/31] i386/52822 i386 5.1-BETA2 problems with named/syslogd/if_ o [2003/06/04] kern/52935 occasional panic in ip_input with IPSEC o [2003/06/04] kern/52936 Huge writes to nfs exported FAT filesyste o [2003/06/05] kern/52962 imp discrepancy between ifconfig and wicontro p [2003/06/05] standards/52972standards /bin/sh arithmetic not POSIX compliant o [2003/06/05] i386/52975 i386 CPUTYPE=k7 results in non-functional /boo o [2003/06/07] kern/53008 [PATCH] genwakecode generates errornously o [2003/06/10] i386/53137 i386 background fscking causing ffs_valloc pan o [2003/06/11] bin/53201 re buildworld 5.1-RELEASE on 4.8-STABLE fail o [2003/06/13] ports/53290 lioux Adds russian charsets to `mail/spamoracle o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian o [2003/06/17] ports/53414 ports-bugs port security/amavis-perl open filedescri o [2003/06/17] bin/53434 pw disallow a password including space. o [2003/06/18] kern/53447 poll(2) semantics differ from susV3/POSIX o [2003/06/19] ports/53504 knu pkgdb -F causes ruby to fail (can not all s [2003/06/19] ports/53508 lofi security/newpg: gpgsm dumps core (while i o [2003/06/20] standards/53554standards interval timers not cleared in fork() a [2003/06/20] kern/53566 mbr IBM Eserver (245 || 345) + ServeRaid 5i i o [2003/06/21] bin/53606 roberto ntpdate seems to hang system o [2003/06/24] sparc64/53670sparc64 pthreads implementation on 5.1-Release sp o [2003/06/27] bin/53839 qa sysinstall disklabel editor fails on post o [2003/06/27] bin/53839 qa sysinstall disklabel editor fails on post o [2003/06/27] kern/53847 software hang o [2003/06/27] www/53862 www -CURRENT ports symlink busted f [2003/06/30] kern/53920 andre sluggish TCP connection o [2003/06/30] kern/53927 imp wi0: device timeout problem with PRISM 2. o [2003/06/30] kern/53940 imp Some WiFi devices cannot connect to hosta o [2003/06/30] i386/53948 i386 console="comconsole" in loader.conf cause o [2003/07/01] kern/53987 smbfs can't access to files with symbol ¿ o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/02] kern/54049 sound Sound driver reports device busy and show f [2003/07/03] bin/54066 njl ACPI repeating error messages at boot tim o [2003/07/03] ports/54067 mbr www/mod_auth_mysql_another fails to build o [2003/07/04] bin/54097 Non-local yppasswd -d broken in 5.1-CURRE o [2003/07/06] ports/54156 dougb Add foomatic and cups support to print/hp o [2003/07/07] kern/54188 [PATCH] touchpad doesn't work on some Ace o [2003/07/07] misc/54189 DNS resolver should resolve hostnames wit f [2003/07/09] kern/54248 andre nge/vlan: kernel panic o [2003/07/09] ports/54256 mita japanese/vflib: fix dependency on japanes o [2003/07/09] kern/54295 [PATCH] ng_rfc1490(4) does not support Ci o [2003/07/10] kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o [2003/07/10] gnu/54317 sobomax tar with very large packages and portinst f [2003/07/10] kern/54331 robert shutdown() on a socket registered in a kq o [2003/07/11] bin/54401 [patch] pppstats prints 0 for absolute va o [2003/07/12] standards/54410standards one-true-awk not POSIX compliant (no exte o [2003/07/12] ports/54412 ade USE_LIBTOOL_VER overwrites autoconf-PATH o [2003/07/12] ports/54424 knu portupgrade ignores ALT_PKGDEP o [2003/07/13] ports/54435 lioux [PATCH] multimedia/libdvdread dvdcss_crac o [2003/07/13] bin/54446 pkg_delete doesn't honour symlinks, portu o [2003/07/15] kern/54495 njl ACPI problem on Compaq Evo N620c o [2003/07/15] i386/54501 i386 Promise Ultra133 TX2 does not work proper o [2003/07/15] bin/54517 mbr dhclient core dumps on negative ip addres o [2003/07/16] ports/54546 openoffice OpenOffice-1.0.3_2 build fails: autoconf. o [2003/07/20] kern/54673 'stli' driver requires unavailable COMPAT o [2003/07/21] kern/54705 sound codec timeout during read of register 26 o [2003/07/22] i386/54756 i386 ACPI suspend/resume problem on CF-W2 lapt o [2003/07/23] i386/54781 i386 ACPI prevents psm to detect on Compaq Evo a [2003/07/23] ports/54783 mharo [PATCH] ftp/proftpd: fix for mysql41, MOD o [2003/07/25] bin/54854 cvs pserver sig11 crash on 4.8-R o [2003/07/25] ports/54855 lioux PATCH: fix multimedia/mjpegtools divx too o [2003/07/26] kern/54881 njl New device/vendor ID and quirks for iRive p [2003/07/27] bin/54959 tr utility has a bug in ISO8859-2 locale o [2003/07/28] bin/54969 rcp '-r' option patch or MFC request o [2003/07/28] ports/54970 ports-bugs emulators/linux_base Port Makefile "dange o [2003/07/28] conf/54971 mtm /etc/rc.d/mountcritermote requires ldconf a [2003/07/29] kern/55018 andre [patch] Digiboard PC/Xem fails to initial o [2003/07/30] ports/55036 lioux [Update] Port: mail/qmail (add Maildir++ o [2003/07/30] kern/55081 contigmalloc API semantics inadequate --- o [2003/07/31] ports/55136 lioux qmail-ldap uses old qmail-ldap patch, por f [2003/08/01] ports/55164 openoffice openoffice fails to compile o [2003/08/01] kern/55175 alfred LOR in select and poll f [2003/08/02] ports/55186 kde Doxygen 1.3.1 build fails on Alpha o [2003/08/03] ports/55216 ade devel/{automake,autoconf}: Wrong code in o [2003/08/05] gnu/55278 Externs on implicit declarations o [2003/08/05] kern/55279 miibus/if_ed static/dynamic confusion o [2003/08/05] i386/55290 i386 please MFC the PR:22971 (LinuxEmu; Implem o [2003/08/05] kern/55297 kernel panic after running XFree86 o [2003/08/06] ports/55331 portmgr Port security check (`security-check' tar o [2003/08/07] bin/55346 /bin/sh eats memory and CPU infinitely o [2003/08/07] bin/55349 Amd mixes up symlinks in it's virtual fil o [2003/08/08] bin/55366 grog [patch] vinum makes /dev/vinum with wrong o [2003/08/08] kern/55379 kernel crashes randomly o [2003/08/10] bin/55448 dbm_nextkey() misbehaves after dbm_store( o [2003/08/10] gnu/55452 gzip doesn't handle large files o [2003/08/11] bin/55457 GDB gets confused debugging libc_r thread o [2003/08/12] ports/55493 portmgr Add ability to automatically install *.in o [2003/08/13] docs/55526 blackend Update the branches pic and ascii art for a [2003/08/13] kern/55542 andre [patch] discard oversize frame (ether typ o [2003/08/13] i386/55555 i386 system freezes with access to /dev/ums0 o [2003/08/13] i386/55561 i386 SMbus and I2C don't attach when loaded as f [2003/08/13] ports/55563 openoffice openoffice doesnot build on both stable a o [2003/08/15] i386/55603 unable to reboot when system runs from My f [2003/08/15] ports/55611 ports-bugs Clamav port package build fails on 5.x wh o [2003/08/15] i386/55614 i386 machine freezes - goes on after key press o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press o [2003/08/15] kern/55617 ports-bugs Accessing an nsmb-mounted drive via a smb o [2003/08/16] bin/55634 Add IGNORE_PRINTCAP option to mergemaster o [2003/08/16] ports/55650 obrien update vim to tcl/tk 8.4 o [2003/08/17] i386/55661 njl ACPI suspend/resume problem on ARMADA M70 f [2003/08/20] kern/55727 bms rl(4) not working in recent 4.8-STABLE: w o [2003/08/20] sparc64/55773jake Conversion from long to long double is br o [2003/08/20] kern/55784 Kernel Panic [with trace] in using netgra o [2003/08/20] i386/55793 Flaky behavior of DC when initializing a o [2003/08/20] kern/55822 No ACPI power off with SMP kernel o [2003/08/20] misc/55823 em(4) interfaces (Intel Gigabit) are mute o [2003/08/20] bin/55829 __stderrp not defined in libc.so.3 (compa o [2003/08/21] bin/55846 and conflict p [2003/08/21] misc/55853 [patch]Fix ascii compatible problem in zh o [2003/08/23] kern/55890 brian Error: bundle_Create: ioctl(TUNSIFMODE): o [2003/08/23] i386/55908 i386 perl process stuck in pipewr (no pipe bei o [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/08/24] kern/55934 grog kernel panics while restoring into vinum o [2003/08/24] bin/55947 printf(1) mishandles \0 o [2003/08/24] ports/55948 ports-bugs install of ports/emulators/linux_base fil o [2003/08/25] bin/55956 passwd chat script not backward compatibl o [2003/08/25] kern/55960 IO to PATA drives on Promise SATA150 TX2p o [2003/08/25] conf/55964 sshd: HostBasedAuthentication does not se o [2003/08/25] bin/55965 sshd: problems with HostBasedAuthenticati o [2003/08/26] conf/55991 sshd: problems with HostBasedAuthenticati s [2003/08/26] kern/55993 getcwd() breaks on unionfs mounted direct o [2003/08/26] kern/56008 scottl ps shows L flag erroneously with certain o [2003/08/26] kern/56024 njl ACPI suspend drains battery while in S3 o [2003/08/27] conf/56031 luigi ipfw hangs on every invocation o [2003/08/29] bin/56147 FreeBSD/NetBSD /bin/sh mishandles positio o [2003/08/29] ports/56157 petef [patch] x11/nvidia-driver build broken o [2003/08/29] bin/56166 /usr/bin/script exits prematurely if STDI o [2003/08/30] ports/56205 nork www/mod_php4 won't install o [2003/08/31] kern/56233 IPsec tunnel (ESP) over IPv6: MTU computa o [2003/09/02] kern/56339 select() call (poll() too) hangs, yet cal o [2003/09/02] ports/56359 ports-bugs new port: www/adzap2squirm a [2003/09/03] ports/56363 perky The graphics/py-opengl port is broken o [2003/09/03] misc/56372 njl acpi don't work on TYAN tiger100 M/B o [2003/09/03] kern/56394 njl ACPI sleep delay causes system reboot on o [2003/09/04] docs/56456 blackend Initial import of the ro_RO.ISO889-2 doc/ o [2003/09/04] kern/56461 kris FreeBSD client rpc.lockd incompatible wit o [2003/09/05] ports/56487 x11 Upgrading Xfree86-clients from ports over o [2003/09/05] bin/56500 rpc.lockd needs to use reserved ports o [2003/09/05] ports/56511 mharo ProFTPd port does not install docs for op o [2003/09/07] ports/56567 ports-bugs mail/spamass-milter fails in configure st o [2003/09/08] kern/56605 da driver can reference a NULL pointer o [2003/09/09] kern/56632 MTIO incorrect mt_fileno status after MTE o [2003/09/09] ports/56660 clement new slave port www/mod_jk-apache2 o [2003/09/09] ports/56661 clement modify port mod_jk2 to build mod_jk2 2.x o [2003/09/09] ports/56662 clement new slave port www/mod_jk2-apache2 o [2003/09/10] kern/56675 Syncer "giving up" on buffers and ext2 fi o [2003/09/12] bin/56732 ifconfig fails if interfaces are being cr o [2003/09/13] ports/56744 mich ports/x11/aterm Makefile breaks DELETE an o [2003/09/13] bin/56748 [PATCH] rc.subr: jail devfs handling brok o [2003/09/13] kern/56759 System freezes when writing CD Advansys S o [2003/09/13] kern/56760 System hangs at boot with adaptec 1542 o [2003/09/14] kern/56871 dd can't write variable length data block o [2003/09/15] kern/56889 MODE_SENSE_BIG timeout hanging boot if CD o [2003/09/15] docs/56894 trhodes umass man page: "mount -t msdos" instead o [2003/09/15] standards/56906standards Several math(3) functions fail to set err o [2003/09/17] kern/56944 4.8 cannot boot on Intel Server Board SE7 s [2003/09/18] kern/56988 system panic with doubled up unionfs o [2003/09/19] kern/57015 [patch] Asus wl-100 (pcmcia wifi) support o [2003/09/20] i386/57040 ar driver with PCI card locks up when run o [2003/09/20] kern/57044 sysctl -a panics, kern.disks shows detach a [2003/09/20] ports/57047 portmgr Ports fail to detect threads libraries on o [2003/09/21] kern/57051 sound snd_cmi -> snd_emu10k1 hang o [2003/09/21] ports/57056 ports-bugs libsm and libsmutil not installed -> fail o [2003/09/22] kern/57085 njl umass0 problems, with Sony Vio/USB memory o [2003/09/22] kern/57100 bms disable hardware checksums when using bri o [2003/09/23] ports/57134 tobez lang/perl5: BSDPAN can't be disabled s [2003/09/24] kern/57174 sos 4.9-PRERELEASE panic: ata_dmasetup: trans o [2003/09/24] kern/57195 mount_mfs -i 512 => panic? o [2003/09/25] kern/57206 softdep_lock locks against itself, causin a [2003/09/26] java/57235 znerd Fix pkg_add permission problem in tomcatX o [2003/09/26] bin/57255 joe usbd and multi-function devices o [2003/09/27] kern/57273 joe PATCH, fix usb keyboard repeat problem o [2003/09/29] kern/57348 imp Inserting PC-CARD hangs laptop o [2003/09/29] kern/57380 andre Connections are reset by the kernel witho o [2003/09/30] bin/57401 mbr amd sets wrong permissions on mount point o [2003/09/30] bin/57414 /usr/bin/script fails silently if stdin i o [2003/09/30] ports/57415 knu portupgrade can't be run in the backgroun o [2003/10/01] bin/57456 Telnet encryption gets out of sync o [2003/10/01] ports/57465 emulation kldunload rtc.ko causes a panic; yet it's o [2003/10/01] misc/57466 dialog(1) does not read stdin, breaks sub a [2003/10/01] kern/57479 bms FreeBSD Not in compliance with RFC 1122, o [2003/10/01] bin/57484 bms routed not ignoring cloned routes o [2003/10/03] misc/57539 [Patch] Unable to installworld on multipl o [2003/10/03] ports/57552 ports-bugs cannot install www/frontpage: pkg_create: o [2003/10/03] bin/57554 sh(1) incorrect handling of quoted parame o [2003/10/04] i386/57578 njl ACPI problems on IBM T20 GE86 o [2003/10/05] kern/57631 Boot failing for ALi chipsets, patch atta o [2003/10/06] i386/57673 i386 Odd/dangerous disklabel behaviour on 5.0 o [2003/10/07] kern/57722 uidinfo list corruption o [2003/10/08] kern/57760 IPsec policy on inbound trafic is not enf o [2003/10/09] ports/57790 ports-bugs cdparanoia triggers kernel panic f [2003/10/09] ports/57793 pav New port: sysutils/ng_ipacct, Netgraf net f [2003/10/09] ports/57800 ache Probable non-64bit-cleanness of unrar o [2003/10/09] kern/57818 4.9-RC panics when kernel is built with a o [2003/10/10] bin/57833 PATCH: ps cannot change title for keyword f [2003/10/10] ports/57854 linimon Port java/jboss3 is dependent on but does o [2003/10/12] ports/57897 ports-bugs Portupgrade of mplayer to latest version o [2003/10/12] kern/57908 darrenr 'return-rst' does not work for ipv6 in ip o [2003/10/13] kern/57945 jmg [patch] Add locking to kqueue to make it o [2003/10/13] ports/57956 ports-bugs New port: java/eclipse-pmd plugin o [2003/10/13] kern/57961 kmem_malloc(65536): kmem_map too small: 2 o [2003/10/13] misc/57973 KDE freezes on startup with ATI RADEON 90 o [2003/10/13] bin/57975 include/xmmintrin.h defines __v4si twice o [2003/10/13] kern/57985 [patch] Missing splx in ether_output_fram o [2003/10/14] docs/58033 doc [PATCH] getenv(3) manpage doesn't state t f [2003/10/14] ports/58059 linimon port math/ploticus needs GCC 3.x to compi o [2003/10/16] kern/58154 mckusick Snapshots prevent disk sync on shutdown o [2003/10/17] kern/58169 panic: vnode_pager_getpages: unexpected m o [2003/10/18] bin/58195 /bin/sh sometimes run endless loop inside a [2003/10/20] ports/58286 nork pstoedit port will not build with gcc-3.3 o [2003/10/20] kern/58287 darrenr ipnat map protocol specification broken o [2003/10/21] bin/58326 nss users cannot send mail via /usr/bin/m o [2003/10/22] ports/58406 tobez lang/perl5: use.perl port does not handle o [2003/10/23] i386/58458 i386 ATAPI-CDROM DMA Support on ALi Aladdin V o [2003/10/24] ports/58498 kde kdelibs links against -pthread on -CURREN o [2003/10/24] bin/58504 /etc/periodic/daily/100.clean-disks trave o [2003/10/25] java/58524 glewis new port: java/jmf - Java Media Framework o [2003/10/26] ports/58567 grog [PATCH] benchmarks/rawio has a bug in com o [2003/10/26] i386/58580 i386 After sysinstall, F2 fails; wrong device o [2003/10/26] kern/58581 System call hang 5.x triggered by gnunetd a [2003/10/28] kern/58649 sanpei [patch] USB CD-R writing patch o [2003/10/28] ports/58655 mp A replacement patch is necessary for comp o [2003/10/29] bin/58687 gethostbyname leaks kqueue file descripto o [2003/10/29] ports/58701 lioux qmail upgrade via ports doesn't preserve o [2003/10/30] i386/58718 i386 need to remove battery before booting lap o [2003/10/30] ports/58724 ports-bugs `www/mod_perl' install MAN3 pages on in s o [2003/10/30] i386/58749 i386 lock order reversal with heavy IO on ar0 o [2003/10/30] kern/58752 grog vinum panics on create/resetconfig o [2003/10/31] ports/58791 portmgr GNU INFO related settings in Mk/bsd.port. o [2003/11/01] i386/58826 i386 reboot on an IBM PC Server 315 merely hal o [2003/11/02] kern/58831 panic: vinvalbuf: flush failed o [2003/11/02] conf/58832 /etc/rc.d/ipsec starts not in time o [2003/11/02] bin/58850 trhodes Recent sysinstall changes wipes out rc.co o [2003/11/03] i386/58870 i386 page fault in kernel mode with ifconfig a f [2003/11/03] kern/58888 4.9-RELEASE installation fails (xl causes o [2003/11/04] ports/58920 ports-bugs lang/php4 compiles with unexcpected libs f [2003/11/04] kern/58927 andre Verification of reverse path in ip_fw2.c o [2003/11/04] kern/58930 Page fault when unplugging Alcatel Speedt o [2003/11/04] kern/58941 rwatson acl under ufs2 doesn't handle disk corrup o [2003/11/04] bin/58951 Some problems with 4.9-RELEASE installati o [2003/11/05] i386/58953 [patch] detect NetMOS-based six serial po o [2003/11/05] kern/58967 Kernel kills processes in spite of cputim o [2003/11/05] misc/58971 joe bug in libusbhid descriptor parser code. o [2003/11/05] kern/58991 grog vinum does not build f [2003/11/06] ports/58998 ports-bugs [PATCH] Update security/drweb to 4.30 o [2003/11/06] java/59021 java Mk/bsd.sites.mk: MASTER_SITE_APACHE_JAKAR o [2003/11/07] bin/59042 grog Vinum fails to initialise on hardware dri o [2003/11/08] kern/59062 wpaul nge0 swaps vlan tag bytes. o [2003/11/09] ports/59072 dwcjr net/samba-devel doesn't work without libi o [2003/11/09] kern/59098 Integrated sound card not working in Free o [2003/11/10] kern/59116 mount_ntfs of a Windows 2000-formatted fs o [2003/11/10] kern/59158 -CURRENT from 20031108 will not install o f [2003/11/11] kern/59172 bms Zebra interface route causes kernel panic o [2003/11/11] kern/59183 imp wi problems with wi_cmd o [2003/11/11] kern/59185 4.9-RELEASE kernel panic (page fault) o [2003/11/11] i386/59192 i386 ATA drive not spotted with SCSI drive o [2003/11/11] kern/59203 imp Panic with wi and newcard o [2003/11/12] ports/59230 lioux gstreamer-plugins Makefile depends on lib p [2003/11/12] kern/59233 matk patch to soundcard.h to include an ioctl f [2003/11/13] bin/59247 CURRENT build world compile errors under o [2003/11/13] kern/59248 4.9-RELEASE, ACPI Panic with Dell Latitud o [2003/11/13] kern/59251 Failure of 4.8-RELEASE/4.9-RELEASE/5.1-RE o [2003/11/13] kern/59277 Sound not working - /dev/dsp* not found o [2003/11/14] kern/59296 Serial Line Noise Causes System Hang in L o [2003/11/14] i386/59298 i386 Can't render anything with Blender / RADE o [2003/11/15] kern/59303 grog vinum crashes kernel if concurrent revivi o [2003/11/15] kern/59306 matk patch to augment /dev/sndstat to show whi o [2003/11/15] ports/59310 phantom ports/java/jdk14 fails: no dir .../j2dsk- o [2003/11/16] kern/59349 patch to including locking for es137x sou o [2003/11/16] ports/59359 roger portupgrade of gnomemeeting-0.98.5 fails o [2003/11/18] bin/59417 ps -o rtprio does not work o [2003/11/18] ports/59444 ports-bugs New port: print/tipa, a package that prov o [2003/11/19] kern/59456 fdescfs stat / compress creates only empt o [2003/11/20] i386/59503 i386 kernel routines and drivers don't recogni o [2003/11/20] ports/59535 obrien shells/bash2 must be dynamically linked t o [2003/11/20] misc/59536 re [PATCH] Release Builds fail with DOMINIMA o [2003/11/22] docs/59587 doc rewriting examples (part of documentation f [2003/11/22] i386/59593 SSHD uses 8-char user password for authen o [2003/11/23] ports/59615 roger cannot compile openh323 f [2003/11/24] bin/59638 des passwd(1) does not use PAM to change the o [2003/11/24] kern/59652 cannot redirect kernel output to serial c o [2003/11/24] kern/59659 pdeuskar em driver cannot handle VLANs o [2003/11/24] kern/59660 pdeuskar em driver cannot handle MAC address chang o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. o [2003/11/26] ports/59710 lev `www/mod_perl' generate wrong man pages e o [2003/11/26] amd64/59714 amd64 device timeout and ad0: WARNING - WRITE_D o [2003/11/28] kern/59747 usb dead after resume o [2003/11/28] bin/59777 ftpd(8)/FreeBSD 5: potential username enu o [2003/11/29] kern/59803 ticso Wrong detection of/panic with Edimax USB o [2003/11/30] ports/59856 trevor Missing library in www/linux-mozilla s [2003/12/01] misc/59890 bugmeister send-pr database is spam harvested o [2003/12/02] kern/59896 trm driver is not in GENERIC o [2003/12/02] kern/59912 bms mremap() implementation lacking o [2003/12/04] ports/59944 obrien make install in editors/vim port fails o [2003/12/04] i386/59945 i386 nullfs bug: reboot after panic: null_chec o [2003/12/04] i386/59959 machine can not reboot itself with Mylex o [2003/12/05] gnu/59971 peter assertion "strncmp (repository, current_p o [2003/12/06] bin/59995 various fixes to ppp dumping core o [2003/12/06] ports/59997 znerd /usr/local/bin/ant ignores USE_JAVA setti o [2003/12/07] kern/60029 5.2-RC will not boot with empty LS-120 dr o [2003/12/08] kern/60050 Toshiba/3Com 3CXM056-BNW: Open Causes Int o [2003/12/09] ports/60081 ports-bugs x11/nvidia driver should install in to /b o [2003/12/09] ports/60083 phantom Unsafe use of getaddrinfo in jvm 1.4.2-p5 o [2003/12/10] kern/60109 jmg [PATCH] Fix isochronous request handling o [2003/12/10] ports/60125 anholt up-to-date graphics/libglut port fails to o [2003/12/11] i386/60154 i386 ipfw core (crash) f [2003/12/11] ports/60161 trevor Linux emulator (linux_base-8-8.0_3) doesn f [2003/12/11] conf/60169 System install panics when using softupda o [2003/12/13] kern/60217 joe EHCI controller halts when USB 2.0 device o [2003/12/13] kern/60221 ATA system freezes during heavy loads o [2003/12/14] kern/60226 ichsmb driver doesn't detects SMB bus on o [2003/12/14] kern/60235 some /dev-entries missing for newly auto- o [2003/12/14] ports/60245 knu new ruby16-shim-ruby18 bug in included re o [2003/12/14] kern/60247 mutex problems in geom_io o [2003/12/15] docs/60252 doc Continuous re-installations for FreeBSD n o [2003/12/15] kern/60276 joe Kernel panic when plugging in USB (umass) o [2003/12/15] kern/60284 marcel uart driver fails report invalid paramete o [2003/12/16] i386/60317 i386 FreeBSD 5.2rc1 doesn't boot with ACPI ena o [2003/12/17] ports/60345 mita fix port: chinese/vflib f [2003/12/17] misc/60349 qa 5.2-RC1 cannot do NFS installation o [2003/12/18] ports/60386 ports-bugs new ports/firebird has broken lang/php5 o [2003/12/20] ports/60440 lioux [New Features] Port: mail/qmail o [2003/12/21] ports/60479 ports-bugs x11-toolkits/p5-Tk800 o [2003/12/21] ports/60484 mp devel/gdb53 downgraded without bumping PO o [2003/12/21] ports/60490 leeym ports/net/mldonkey fails to build with th o [2003/12/22] misc/60512 launching X freezes CURRENT o [2003/12/23] kern/60526 Post-PAE stable SMP machine freezes o [2003/12/23] ports/60532 andreas fix port: print/apsfilter o [2003/12/23] bin/60533 4.9-STABLE libc locale support might cont o [2003/12/24] ports/60540 ports-bugs teamspeak is not litening on port 14534 f o [2003/12/25] kern/60555 can no longer use vinum volumes for swap s [2003/12/25] ports/60559 nork [Semi-Maintainer Update] MySQL related po o [2003/12/25] ports/60572 lioux qpopauth is broken o [2003/12/26] kern/60598 wire down of scsi devices conflicts with o [2003/12/26] kern/60602 Dynamic attach UBS device can cause 5.2-R o [2003/12/26] i386/60603 i386 dd causes error when copying cd from ATA o [2003/12/27] i386/60641 i386 Sporadic SCSI bus resets with 53C810 unde o [2003/12/27] misc/60646 VIA C3 system hangs on reboot o [2003/12/28] i386/60671 i386 FreeBSD 5.2RC2 installation process doesn o [2003/12/28] docs/60679 doc pthreads documentation does not describe o [2003/12/29] i386/60681 i386 wicontrol -L critical crash (sigbus) o [2003/12/29] i386/60690 i386 atapicd driver causes spontaneous uncondi o [2003/12/29] ports/60700 adrian squid cannot be built with transparent-ip f [2003/12/30] ports/60722 znerd java/jdk14-doc: empty PLIST o [2003/12/30] ports/60748 sergei courier doesn't compile with ldap even af o [2003/12/30] ports/60752 trevor print/acroread5 is lacking dependency of o [2003/12/30] bin/60758 cycle-eating endless loop in lock(1) o [2003/12/31] kern/60761 sound pcm performance on emu10k1 driver o [2003/12/31] www/60770 www query-pr-summary.cgi can't find the PRs a o [2003/12/31] standards/60772standards _Bool and bool should be unsigned o [2004/01/02] ports/60818 obrien lang/gcc34 - problem w/ packaging, relate f [2004/01/02] www/60838 www Can't post follow-ups o [2004/01/03] kern/60856 [patch] panic at tcp_output(), with TCPDE o [2004/01/04] bin/60886 ppp(8) doesn't expand macro MYADDR in `!' o [2004/01/04] i386/60887 i386 can't boot when fbsd exists with other op o [2004/01/04] kern/60889 5.2RC2 - zero IP id change not effective o [2004/01/04] kern/60897 devfs_rule_matchpath fails on directories o [2004/01/04] ports/60909 portmgr info docs are not installed correctly whe o [2004/01/05] ports/60921 ports-bugs [maintainer security update] update disti o [2004/01/05] ports/60940 ports-bugs Port ez-ipupdate requires updating to new o [2004/01/05] ports/60942 ports-bugs net/zabbix should depend on net/fping o [2004/01/05] ports/60949 ports-bugs Two packages overwrite the same man file: 1200 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1995/01/11] i386/105 standards Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po o [1997/01/10] bin/2442 setusershell()/endusershell() missing a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d s [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack o [1997/07/18] bin/4116 Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 bms [PATCH] minor nits in sys/netatalk o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 jmallett find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/25] bin/4629 grog calendar doesn't print all dates sometime o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl p [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/18] conf/6346 joe Kernel version strings need to relate to s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD o [1998/06/22] ports/7023 portmgr bsd.port.(%|subdir.).mk patches for size a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % s [1998/07/10] misc/7232 qa Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/19] bin/7324 mtm Suggestions for minor modifications to ad s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/22] kern/7722 Changes to acct format s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups f [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/19] kern/8376 tjr CLOCK_VIRTUAL not implemented o [1998/10/27] i386/8474 repquota does not pick up NIS information a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) a [1998/12/18] bin/9123 pax can't read tar archives that contain f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me s [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy a [1999/01/05] bin/9333 jkoshy timestamp dump's progress o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi a [1999/01/28] bin/9770 jmallett An openpty(3) auxiliary program o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/19] gnu/10670 peter cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/04/11] bin/11085 Per-host configuration for syslog.conf f [1999/04/13] bin/11114 tjr make(1) does not work as documented with o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor o [1999/06/07] kern/12071 fanf [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 imp Enhancement to ed driver for Linksys 10/1 o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/25] bin/12801 nvi infinite recursion with options "left f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/12] bin/13108 authunix_create_default includes egid twi a [1999/08/13] bin/13128 cy pkg_delete doesn't handle absolute pathna o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for /dev/audio fails for sound a [2001/10/23] kern/31455 n_hibma [PATCH] ohci driver probrem when send dat o [2001/10/23] kern/31456 Register number definition for AMD PCnet f [2001/10/25] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH o [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/29] bin/31588 change request to allow mount(1) to set t o [2001/10/29] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] ports/31630 jmz Port se-ispell install the dictionary in o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/11/01] kern/31686 bms Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/09] misc/31890 new syscons font o [2001/11/10] bin/31906 No method available to unwind atexit(3) s o [2001/11/12] bin/31933 pw can interpret numeric name as userid d a [2001/11/12] ports/31943 ports-bugs mysql323-server port hostname look up fai o [2001/11/14] misc/31981 (mis)feature in getnetent parsing -- comm o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator s [2001/11/15] i386/32014 ppi locks up system during boot o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/17] conf/32067 Problems with spanish keyboard in console o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc o [2001/11/20] standards/32126standards getopt(3) not Unix-98 conformant f [2001/11/20] misc/32144 murray unattended install with sysinstall doesn' o [2001/11/20] ports/32145 jmz XFree86 doesn't ldconfig itself o [2001/11/26] conf/32288 qa After install: /etc/rc complains if crypt o [2001/11/26] conf/32288 qa After install: /etc/rc complains if crypt a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/03] misc/32480 Missing graphic characters in syscons fon o [2001/12/04] bin/32501 quot(8) is stupid regarding the filesyste o [2001/12/04] ports/32508 ports-bugs www/flashplugin-mozilla has malloc bug f [2001/12/08] misc/32605 nsouch SMBus driver broken o [2001/12/09] kern/32652 joe A new ioctl to uscanner s [2001/12/09] ports/32653 joe Added patches to improve USB scanner supp o [2001/12/09] kern/32659 VM and VNODE leak with vm.swap_idle_enabl o [2001/12/09] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] kern/32671 imp Patch to generate usbdevs.h automatically o [2001/12/10] kern/32677 pciconf -l opens /dev/pci for read/write o [2001/12/10] misc/32680 [PATCH] Allows users to start jails by ho o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 roger bktr driver missing tuner for eeprom dete o [2001/12/14] bin/32828 w incorrectly handles stale utmp slots wi p [2001/12/16] kern/32912 mp options misssing TCBHASHSIZE o [2001/12/17] ports/32936 mharo ports/security/keyprint only supports S/K o [2001/12/18] conf/32976 assar Kerberos5 config files not installed by d o [2001/12/18] docs/32979 hmp manpages are not installed for k5admin an o [2001/12/19] kern/33004 n_hibma Patch for USB (uhci) o [2001/12/19] misc/33007 n_hibma umass device timeout after successive use o [2001/12/19] misc/33013 cg mixer does not have treble/bass for Sound o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as o [2001/12/22] i386/33097 sound Crystal 4237b mixer problems o [2001/12/23] kern/33117 empty struct md_coredump in pcb.h and use o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt s [2001/12/23] bin/33133 keyinit outputs wrong next login password o [2001/12/25] gnu/33182 mp gdb seg faults when given handle SIGALRM o [2001/12/26] kern/33203 "got bad cookie" errors on NFS client o [2001/12/29] ports/33320 trevor print/acroread5 does not install the Nets o [2001/12/31] conf/33395 imp better way to use more than one pccard ne o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . o [2002/01/07] docs/33645 assar k5list(1) contains many incorrect "klist" a [2002/01/07] bin/33661 PAP AuthAck/AuthNak parsing problem in pp f [2002/01/08] kern/33696 mbr panic: Driver mistake: repeat make_dev("a o [2002/01/08] kern/33707 sound ICH (82801AA) cannot be used for mono rec o [2002/01/09] docs/33724 chern a very minor documentation error o [2002/01/09] misc/33736 yokota Scroll-lock on the console prevents shutd o [2002/01/09] conf/33753 Intel ICH2 and NVidia device ID updates o [2002/01/10] bin/33774 Patch for killall(1) o [2002/01/10] misc/33778 joe crunchgen enhancements o [2002/01/12] bin/33809 mux mount_nfs has trouble with embedded ':' o [2002/01/13] bin/33834 tjr strptime(3) is misleading o [2002/01/13] docs/33852 doc split(1) man page implies that input file o [2002/01/13] misc/33866 Last Hr, Last ... may be incorrect on mac o [2002/01/14] docs/33877 doc Documentet behaviour of SF_flags for non- o [2002/01/16] bin/33941 /usr/sbin/dev_mkdb dumps core a [2002/01/16] kern/33963 bde Messages at the serial IO port device pro o [2002/01/16] misc/33965 Programmable keys of the keyboard (Olidat o [2002/01/16] conf/33967 Alternative Italian keymap o [2002/01/17] i386/34010 keyinit takes passwords less than 10 char o [2002/01/21] bin/34146 newfs defaults and vfs.usermount=1 tug at o [2002/01/22] misc/34171 yar ftpd indiscrete about unprivileged user a o [2002/01/23] misc/34195 iedowse setting the action for SIGCHLD to SIG_IGN o [2002/01/23] bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o [2002/01/24] alpha/34232 alpha rpc.statd throws alignment errors o [2002/01/24] docs/34239 trhodes tunefs(8) man page doesn't describe argum o [2002/01/26] misc/34309 gad lpd does not garantie that controlfiles b a [2002/01/26] conf/34316 sheldonh Uncomment kserver-adm to /etc/services o [2002/01/27] conf/34355 [PATCH] rc.conf comment misleading (firew o [2002/01/28] bin/34394 peter tgetent returns wrong value in libtermcap o [2002/01/29] misc/34412 maxim tftp will still try and receive traffic e o [2002/01/30] ports/34442 znerd xt, xalan-j, saxon should have the same C o [2002/01/31] conf/34494 n_hibma usb configuration problem - usb does not o [2002/01/31] bin/34497 grog calendar(1) does not understand calendars s [2002/01/31] bin/34498 Error in vi manpage. o [2002/01/31] bin/34519 pkg_check(8) does not return exit code >0 o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d a [2002/02/03] kern/34591 andre ICMP bandwidth limiting does not indicate s [2002/02/04] misc/34621 billf i have a patch for (lol) /usr/games/fish o [2002/02/04] bin/34628 jkh pkg-routines ignore the recorded md5 chec o [2002/02/06] kern/34665 darrenr ipfilter rcmd proxy "hangs". f [2002/02/06] misc/34673 Second call to select() waits ~100ms befo o [2002/02/06] bin/34676 mbr dhclient always in -q quiet mode (PATCH E o [2002/02/07] gnu/34709 [patch] Inaccurate GDB documentation o [2002/02/07] ports/34714 ache unzip(1) breaks filenames in non-ASCII ch f [2002/02/07] bin/34728 murray DHCP hostname set as Hexadecimal string o [2002/02/08] conf/34729 sheldonh treat smbfs as network file system in /et o [2002/02/08] kern/34747 njl Please add USB floppy entry o [2002/02/09] bin/34759 Phantasia does not accept [enter] key o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized o [2002/02/10] misc/34788 dwmalone dmesg issues with console output o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to o [2002/02/11] bin/34834 "fix" of du(1) and -h o [2002/02/11] bin/34843 fenner `tcpdump port echo' filters for port 4 in o [2002/02/11] kern/34854 sound /src/sys/dev/sound doesn't work correctly o [2002/02/12] bin/34874 Netstat output to small o [2002/02/12] kern/34880 luigi Impossibility of grouping IP into a pipe p [2002/02/14] misc/34935 New locale (Cyrillic Windows Codepage 125 o [2002/02/14] kern/34942 sound Attempt to play -> "pcm0: play interrupt o [2002/02/14] kern/34952 joe Mouse cursor invisible with USB mice and o [2002/02/15] bin/34955 doc [PATCH] ps(1) is out of touch with realit o [2002/02/15] kern/34963 identify procs belonging to the same jail f [2002/02/15] kern/34965 4.4, 4.5 freeze at boot time on ASUS P2B a [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/16] bin/35018 brian enhancing daily/460.status-mail-rejects s [2002/02/17] bin/35070 math(3) references section "3m", etc. o [2002/02/18] i386/35078 Uninitialized pointer dereference in func o [2002/02/18] i386/35101 chern cvusupit and other packages won't extract o [2002/02/19] bin/35109 [PATCH] games/morse: add ability to decod o [2002/02/19] bin/35113 grdc enhancement: countdown timer mode o [2002/02/21] misc/35172 Please update am-utils(amd) into newer ve o [2002/02/21] kern/35175 obrien ptrace(PT_DETACH, ....) doesn't do signal o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/23] kern/35234 World access to /dev/pass? (for scanner) o [2002/02/23] conf/35242 Change to etc/periodic/weekly/330.catman f [2002/02/23] misc/35245 brian unwanted stealth behaviour (inbound icmp o [2002/02/23] conf/35262 Generation of boot block for headless ope f [2002/02/23] kern/35269 kris possible panics with 4:1 filesystem ratio o [2002/02/24] kern/35289 Brooktree device doesnt properly signal a o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di s [2002/02/25] bin/35333 send-pr(1) vim syntax highlighting suppor o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/27] misc/35381 incorrect floating-point display of large o [2002/02/28] misc/35400 qa sysinstall could improve manipulation of o [2002/02/28] misc/35400 qa sysinstall could improve manipulation of o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy s [2002/03/01] ports/35459 ports-bugs portupgrade doesn't clean up dependencies o [2002/03/04] misc/35542 bde BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 Enhanced periodic scripts o [2002/03/05] bin/35568 make declares target out of date, but $? f [2002/03/06] i386/35599 murray install o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] kern/35635 sheldonh [patch] missing dep in libiconv prevents o [2002/03/07] ports/35638 markm tn3270 dumps core unconditionally o [2002/03/07] ports/35639 max executable name conflicts: ploticus and s o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] www/35647 www www; combine query-by-number and multi-fi o [2002/03/07] docs/35648 doc rc.conf; add note about "flags" to both f o [2002/03/07] docs/35652 trhodes bsd.README seriously obsolete o [2002/03/08] bin/35671 wrong comments in rc.diskless1 o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/08] docs/35687 doc /etc/nsmb.conf missing mention of readers o [2002/03/08] docs/35696 trhodes mount_smbfs(8) references a nonexistent n o [2002/03/09] www/35711 bugmeister the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/09] misc/35727 man(1) program should not display (old) d o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an f [2002/03/11] misc/35764 nork Icewm does not display APM status properl o [2002/03/11] ports/35767 portmgr make_index script does not deal with syml o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/13] kern/35846 imp timeout in wi_cmd 11, machine hangs for a o [2002/03/14] bin/35886 [patch] Enhancement: custom time format f o [2002/03/14] bin/35894 bbraun popen.c in cron won't build without LOGIN o [2002/03/15] docs/35943 doc at(1) config files are misplaced in /var/ p [2002/03/15] docs/35951 trhodes disklabel(8) manual confuses partitions a o [2002/03/15] docs/35953 doc hosts.equiv(5) manual is confusing or wro o [2002/03/17] ports/36020 jmz Update port: print/musixtex T.98 -> T.104 s [2002/03/18] standards/36076standards Implementation of POSIX fuser command o [2002/03/19] misc/36110 dmesg output corrupt if /dev/console is b f [2002/03/19] ports/36112 portmgr [PATCH] New feature for whole ports tree: o [2002/03/19] conf/36118 re 4.5 Upgrade says it won't touch /usr/src, o [2002/03/20] bin/36136 savecore -z option does not work o [2002/03/20] misc/36143 Dynamic (non linear) mouse acceleration a o [2002/03/20] misc/36154 simon Getting USB mouse to work: usbd and mouse o [2002/03/21] kern/36170 an(4) does an_init() even if interface is o [2002/03/24] bin/36262 [PATCH] Fixed rusers idle-time reporting o [2002/03/26] alpha/36327 alpha trap within cvt() while attempting to pri o [2002/03/26] misc/36359 fxp driver and Intel Pro/100 S NIC (0002B o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] misc/36385 luigi crunchgen does not handle Makefiles with o [2002/03/27] misc/36392 cron starts before vi recover, and vi rec o [2002/03/28] kern/36425 bump up SYS_NMLN in sys/utsname.h o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo a [2002/03/28] docs/36447 trhodes chown(8) manual misdescribes handling of o [2002/03/28] docs/36449 doc symlink(7) manual doesn't mention trailin s [2002/03/28] gnu/36460 cu(1) program does not work very well. f [2002/03/29] bin/36477 gshapiro mailwrapper doesn't handle rmail calls o [2002/03/29] bin/36501 grog /usr/bin/calendar can't handle recurring o [2002/03/30] bin/36553 gad Two new features in newsyslog(8) o [2002/03/30] misc/36556 patch: regular expressions for tcpwrapper o [2002/03/30] ports/36560 rse bug fix for the eperl package f [2002/03/31] kern/36569 njl umass fails when RiteLink Pocket Disk is o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2002/04/01] misc/36646 dwmalone [PATCH] Top does not work correctly in a p [2002/04/02] kern/36682 joe USB isochroneous transfer doesn't report o [2002/04/03] docs/36724 darrenr ipnat(5) manpage grammar is incomplete an f [2002/04/03] docs/36726 trhodes Handbook lacks information about hardware o [2002/04/03] docs/36727 trhodes Mail chapter of Handbook is incomplete o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 which(1) ought to append @ if result is s a [2002/04/04] ports/36766 ade Incompatibility between autoconf, automak o [2002/04/05] bin/36786 make ps use 24-hour time by default o [2002/04/07] ports/36849 cy x11-wm/fvwm-themes fails to switch themes o [2002/04/08] java/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/08] bin/36902 [patch] proposed new format code %N for s o [2002/04/08] misc/36916 qa DOS active partition flag lost in libdisk o [2002/04/08] misc/36916 qa DOS active partition flag lost in libdisk o [2002/04/09] ports/36933 portmgr [PATHCES] New feature for pkg_create and f [2002/04/09] java/36951 glewis Java (aka 1.3.1-p6-root-020405-00:26) cor o [2002/04/09] kern/36952 ldd comand of linux does not work o [2002/04/10] bin/36960 grog calendar doesn't effect -t option. o [2002/04/10] kern/36983 CD9660 unicode to utf-8 [hack] o [2002/04/11] bin/37013 ls directory name output trailing slash d o [2002/04/13] misc/37034 Fixed maximum character length in EUC o [2002/04/13] misc/37047 brian daily_status_mailq_shorten doesn't produc o [2002/04/14] misc/37073 Few new tips for FreeBSD-tips fortune o [2002/04/14] bin/37074 bp [PATCH] Typographical error in output of o [2002/04/14] bin/37083 small improvement to talk(1): add clocks o [2002/04/15] bin/37096 Fixes to fsdb command-line handling [patc f [2002/04/16] i386/37137 qa FreeBSD install doesn't recognize version o [2002/04/16] misc/37160 qa /stand/sysinstall coredumps when trying t o [2002/04/16] misc/37161 ext2 linux file system, error handling la o [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic f [2002/04/23] kern/37374 joe [PATCH] closing ums0 blocks with wmesg uh o [2002/04/23] i386/37379 /dev/MAKEDEV entry for RocketPort is brok o [2002/04/23] misc/37380 jhb boot0 partition list is outdated (patch i o [2002/04/23] misc/37387 grog bsdmainutils/calendar Hungarian addon fil o [2002/04/23] conf/37395 peter even with NO_SENDMAIL=true, /usr/sbin/sen o [2002/04/24] bin/37424 nfsstat reports negative values o [2002/04/24] misc/37434 mbr dhclient generates pointless log messages o [2002/04/24] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/24] bin/37442 [PATCH] sleep.c to support time multiplie p [2002/04/25] bin/37448 obrien [PATCH] ldd/rtld support for more informa o [2002/04/27] ports/37518 grog gmat port CATALOG needs updating o [2002/04/29] kern/37554 jmg [PATCH] Make ELF shared libraries immutab o [2002/04/29] kern/37555 vnode flags appear to be changed in non-s o [2002/04/29] misc/37562 Incorrect information in /usr/share/examp o [2002/04/29] misc/37569 [PATCH] Extend fstab(5) format to allow f o [2002/04/30] ports/37596 shige EMACS_PORT_NAME=xemacs21 forks make infin o [2002/04/30] kern/37600 sound [Partial PATCH] t4dwave drive doesn't rec o [2002/04/30] conf/37611 proposed /etc/rc.jails for jail(8) manage s [2002/05/01] ports/37654 arved Update textproc/xml4j to 4.0.1 o [2002/05/01] kern/37657 sound /dev/dsp and /dev/audio skip the first 32 o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI o [2002/05/02] kern/37675 grog Page fault when newfs'ing a vinum volume o [2002/05/02] bin/37676 threads libc_r: msgsnd(), msgrcv(), pread(), pwri f [2002/05/03] java/37711 znerd New port: Beacon-agent 0.6.3 (Multicast B o [2002/05/03] ports/37713 seanc AIM Transport doesn't work correctly with o [2002/05/03] bin/37715 "pkg_info -g package_name_version" fail o [2002/05/03] docs/37719 kensmith Detail VOP_ naming in a relevant man-page o [2002/05/03] misc/37732 joe usbd start in wrong place in /etc/rc in 4 o [2002/05/04] bin/37733 su(1) does not behave the way it is descr s [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/07] bin/37844 ru [PATCH] make knob to not install progs wi o [2002/05/09] java/37904 znerd New Port: database/isql-viewer (a JDBC 2. o [2002/05/09] conf/37909 dougb make distribution DESTDIR=/path -DNO_MAKE o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/05/11] ports/37962 markm ports/lang/gcl does not build o [2002/05/12] i386/37999 qa In /stand/sysinstall, 's' selects Options o [2002/05/12] i386/37999 qa In /stand/sysinstall, 's' selects Options o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li o [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/13] i386/38055 qa In Install, Groups (creation) item should o [2002/05/13] i386/38055 qa In Install, Groups (creation) item should o [2002/05/13] i386/38056 qa In Install, User (creation)'s "Member gro o [2002/05/13] misc/38057 qa "install" document doesn't display correc o [2002/05/13] misc/38057 qa "install" document doesn't display correc o [2002/05/13] docs/38061 ume Typos in man pages for faith & faithd o [2002/05/14] ports/38086 rse eperl does not build CFLAGS recursive err o [2002/05/14] ports/38090 ade devel/m4 port PREFIX vs LOCALBASE o [2002/05/16] docs/38148 trhodes In manpages "timezone" should be "time zo o [2002/05/16] kern/38156 quotacheck chokes on user -2 o [2002/05/17] bin/38168 installing curses programs and terminfo d o [2002/05/18] docs/38225 doc change "CDROM" to "CD-ROM" o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} o [2002/05/19] ports/38301 kiri upgrade www/w3-4 to 4.0.47 p [2002/05/19] bin/38303 billf tftpd -c patch o [2002/05/20] misc/38347 new library function abs2rel and rel2abs. f [2002/05/22] ports/38408 wjv zope-zmysqlda does not run o [2002/05/22] kern/38429 [PATCH] getgpid and getsid work for proce o [2002/05/22] kern/38445 Centralized ptrace() permission checking o [2002/05/23] misc/38452 joe Logitech USB iFeel: device_probe_and_atta o [2002/05/23] misc/38468 imp Write drivers for Intel PRO/Wireless 2011 o [2002/05/23] i386/38477 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38478 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38480 qa sysinstall should prompt for normal users s [2002/05/24] www/38500 www gnats web form is overenthusiastic about f [2002/05/24] ports/38516 seanc ICQv7 transport for the Jabber Server o [2002/05/24] i386/38524 cons25 doesn't support F-keys beyond 12 o [2002/05/25] docs/38540 rpratt sysinstall application name should be Sys o [2002/05/25] docs/38556 doc EPS file of beastie, as addition to exist o [2002/05/26] misc/38583 qa sysinstall installs crypto sources when / o [2002/05/26] ports/38593 portmgr Third level ports o [2002/05/27] bin/38610 qa Sysinstall should be able to mount ISO im o [2002/05/27] bin/38610 qa Sysinstall should be able to mount ISO im o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/29] misc/38727 mptable should complain about garbage arg o [2002/05/29] kern/38730 mikeh Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 murray Diskless booting fails with some DHCP ser o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha o [2002/06/02] i386/38826 RFE: BootMgr should provide more identify o [2002/06/02] kern/38828 DPT PM2012B/90 doesn't work o [2002/06/02] conf/38829 bootblock recompile instructions in handb p [2002/06/03] docs/38850 keramida handbook/kernelopts/ should be in Develop o [2002/06/03] misc/38854 qa Resetting the sysinstall during setup cau o [2002/06/03] misc/38854 qa Resetting the sysinstall during setup cau o [2002/06/03] ports/38876 tegge devel/linuxthreads: pkg-plist ignores NOP o [2002/06/05] bin/38931 Cleanup for WARNS=4 of src/games/fortune/ o [2002/06/05] misc/38937 delay between tracks in digital audio dum o [2002/06/05] bin/38940 Change: an option to *stat to allow supre p [2002/06/06] ports/38965 kde [PATCH] kapptemplate fails on FreeBSD o [2002/06/06] kern/38967 sound 4/22/02 pcm driver merge appears to break o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix p [2002/06/08] docs/39044 tjr The man page for rot13(6) never mentions o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/09] java/39080 sobomax java/javavmwrapper: Functionality enhance o [2002/06/10] ports/39095 mharo ports/net/nttcp and ports/net/ttcp appear p [2002/06/10] bin/39116 tjr /usr/bin/printf o [2002/06/12] conf/39192 sound [PATCH] Save pcm mixer settings during re a [2002/06/12] ports/39193 edwin [maintainer-update] net/papaya update to o [2002/06/12] bin/39198 sh aborts on variables with periods o [2002/06/12] misc/39201 ptrace(2) and rfork(RFLINUXTHPN) confuse o [2002/06/12] docs/39213 doc No rc(4) man page o [2002/06/13] standards/39256standards [v]snprintf aren't POSIX-conformant for s o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin o [2002/06/15] misc/39347 use of /usr/bin/* utils in /etc/rc.diskle o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/16] misc/39360 qa If linux emu is added as a dependency (an o [2002/06/16] misc/39360 qa If linux emu is added as a dependency (an o [2002/06/16] ports/39390 gnome Make graphics/imlib not depend upon GTK+ o [2002/06/17] misc/39425 Auto mounted directory was not found at b o [2002/06/17] misc/39439 tcopy will not duplicate tapes with block o [2002/06/18] bin/39463 mtm [PATCH] Add several options to fingerd o [2002/06/18] misc/39466 find -xdev hangs on dead NFS mounts (/etc s [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i f [2002/06/19] conf/39505 automate BUILDNAME variable for releases o [2002/06/19] kern/39527 dwmalone getcwd() and unreadable parent directory o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/19] docs/39532 doc 'find' man page should o [2002/06/20] i386/39574 qa Error mounting /dev/acd0c on /dist: No su o [2002/06/20] bin/39576 [PATCH] tail -f for multiple files p [2002/06/20] bin/39578 add more russian holidays s [2002/06/20] conf/39580 insecure default settings o [2002/06/20] java/39600 znerd New port: jdictionary-ger-hun 1.4 - Germa o [2002/06/20] java/39603 znerd New port: jdictionary-eng-ger 1.4 - Engli f [2002/06/21] ports/39634 linimon Port pclock unaligned access on alpha o [2002/06/22] bin/39676 obrien lukemftpd manual pages fix + examples o [2002/06/22] kern/39681 hidden kernel boot tunables added to sysc o [2002/06/24] misc/39772 imp pccardd is slow to install a PCCARD. o [2002/06/24] bin/39819 tjr cleaning bin/sh code from warnings o [2002/06/24] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/06/25] misc/39864 robert hostname instead of IP in w -n output o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/26] bin/39905 johan cleaning sbin/restore code from warnings o [2002/06/28] conf/39976 vi recovery halting boot process f [2002/06/29] ports/40002 wjv py-4suite: XSLT import error o [2002/06/29] kern/40017 [patch] allows config(8) to specify confi o [2002/06/29] kern/40021 [patch] use ld(1) to build kernel with li p [2002/06/30] misc/40057 bugmeister send-pr -a flag does not work with -f o [2002/06/30] kern/40058 imp lockup on 5.0 DP1 - Xircom X3201 (RealPor o [2002/07/01] misc/40081 sound noise in sound output with built-in CMedi o [2002/07/02] ports/40121 ache standard www/apache13 port creates sbin l o [2002/07/02] ports/40124 kris Patch to wdm to allow long passwords o [2002/07/02] bin/40127 [PATCH] Add functions for PID-file handli o [2002/07/03] ports/40163 cy screen w/o suid and locale o [2002/07/04] docs/40196 doc man find does not describe -follow f [2002/07/06] misc/40273 dougb some more fortunes o [2002/07/07] ports/40284 mi port www/djvuplugin tarball no longer exi o [2002/07/07] misc/40298 using swapfile as /tmp o [2002/07/08] kern/40369 rman_reserve_resource - when "count > (en o [2002/07/09] misc/40378 standards stdlib.h gives needless warnings with -an o [2002/07/09] conf/40391 imp sysinstall with PCCARD<->ISA bridge gets o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/10] docs/40443 doc Update books/faq/book.sgml for USB .ko's o [2002/07/12] ports/40511 sumikawa update for net/zebra (no-ipv6 option) o [2002/07/12] kern/40516 ti driver has no buadrate set f [2002/07/13] bin/40538 dougb mergemaster fixes and enhancements o [2002/07/14] conf/40548 list of /etc/defaults/make.conf undocumme o [2002/07/14] misc/40552 alternate syscons font for iso-07 encodin o [2002/07/14] ports/40555 steve x11-toolkits/open-motif requires mkhtmlin o [2002/07/14] kern/40563 gif driver can clobber route/arp table f [2002/07/14] bin/40570 mbr dhclient freeze the whole thing o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail o [2002/07/14] misc/40577 post-October 2001 Dell Inspiron 2500's (a o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend o [2002/07/15] bin/40617 brian /usr/sbin/ppp is not able to bind the nat o [2002/07/16] misc/40657 joe Logitech iFeel usb mouse will not attach o [2002/07/16] ports/40659 dirk php3 and GD problem o [2002/07/16] misc/40671 threads pthread_cancel doesn't remove thread from o [2002/07/17] misc/40693 the system reboot alone with no reason a [2002/07/17] ports/40699 portmgr allow exclude patterns in `make search` o [2002/07/17] kern/40711 sound CT5880-C sometimes fails to output sound o [2002/07/18] kern/40745 Inconsistency between net/if.c and struct o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/21] conf/40855 murray psuedo-device bpf need note in LINT and G a [2002/07/21] ports/40866 jkoshy sml-nj port CM autoloading compilation pr o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] kern/40926 qa After Upgrading or Clean Installing 4.6, o [2002/07/23] kern/40926 qa After Upgrading or Clean Installing 4.6, o [2002/07/23] kern/40927 sound sound dies with pcm:play:0 play interrupt o [2002/07/24] kern/40948 joe USB HP CDW8200 does not work o [2002/07/24] bin/40958 apm on Acer TravelMate 351 could not resu o [2002/07/25] ports/40975 knu Uncatched coredump of pkg_info while pkgd o [2002/07/25] bin/40980 du(1)'s -h and -k options interact confus o [2002/07/26] bin/41012 brian /etc/periodic/daily/440.status-mailq assu o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/27] bin/41070 added .warning in make(1) + two fixes o [2002/07/27] bin/41071 make NO to NO_ transition patch o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat o [2002/07/30] misc/41179 LD_LIBRARY_PATH security checks o [2002/07/30] bin/41190 in sed, report the { linenum instead of E o [2002/07/31] misc/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] misc/41215 console revert back to kbd0 (AT) after KV o [2002/07/31] kern/41220 [PATCH] Minor sk driver enhancements o [2002/08/01] misc/41238 qa problems with FreeBSD installation on a d o [2002/08/01] misc/41238 qa problems with FreeBSD installation on a d o [2002/08/01] conf/41241 murray sysinstall build uses kbdcontrol keymaps o [2002/08/01] misc/41243 joe USB, getting full desc failed, HID device f [2002/08/02] ports/41259 linimon Info directory change for various GNU Ema o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/02] bin/41271 Non-suid-crontab. o [2002/08/04] bin/41307 ru libalias: logging of links lifecycle (add o [2002/08/04] www/41312 cvs RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/04] kern/41317 trhodes reflect kernel building user for sudo-ers o [2002/08/05] i386/41364 imp pccard: NewMedia "Bus Toaster" SCSI card o [2002/08/06] misc/41379 Cannot browse directory tree on FreeBSD m o [2002/08/07] kern/41415 joe Some USB scanner cannot talk to uscanner o [2002/08/07] docs/41423 doc Update FAQ: attrib command for windows du o [2002/08/09] misc/41490 sound C-Media 8738 sound card static o [2002/08/10] bin/41526 symlinked mount points get mounted more t o [2002/08/11] kern/41543 emulation Easier wine/w23 support f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd o [2002/08/11] misc/41566 obrien file(1) out of date p [2002/08/12] standards/41576standards POSIX compliance of ln(1) a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/14] misc/41674 ken iostat column formatting overlaps o [2002/08/17] i386/41743 sound No sound from SiS630s controller o [2002/08/17] misc/41744 qa Cannot stop comat22 from being extracted o [2002/08/17] misc/41744 qa Cannot stop comat22 from being extracted o [2002/08/17] ports/41755 max Wrong letters in Canna iroha dictionary o o [2002/08/18] misc/41771 '/etc/ttys' and X o [2002/08/19] docs/41791 doc Documentation formatting error o [2002/08/19] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] misc/41817 pw groupshow doesn't include the login gr o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) o [2002/08/21] conf/41855 improvment of /etc/rc.diskless2 script o [2002/08/21] kern/41856 VESA splash screen problems on ThinkPad 2 o [2002/08/21] docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/22] bin/41902 [PATCH] Add queue depth to systat -v disk o [2002/08/22] docs/41919 blackend MINI kernel for bootfloppy (Handbook p.34 a [2002/08/23] ports/41945 ade bsd.port.mk: does not run ACLOCAL o [2002/08/23] misc/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] misc/41949 qa sysinstall sorts /etc/rc.conf during netb o [2002/08/25] ports/42018 ports-bugs pkg_info with PKG_PATH searches through t o [2002/08/25] i386/42022 qa sysinstall in non-interactive mode prompt o [2002/08/25] i386/42022 qa sysinstall in non-interactive mode prompt a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/08/27] kern/42065 kern.ps_showallprocs has no effect on /pr o [2002/08/27] misc/42084 luigi PicoBSD's 'netstat -i' reports negative I o [2002/08/29] i386/42162 qa Installation (sysinstall) crashes, md0c f o [2002/08/29] i386/42162 qa Installation (sysinstall) crashes, md0c f o [2002/08/29] misc/42167 du uses linear search for duplicate inode o [2002/08/29] docs/42182 trhodes Making Dedicated Mode disks doc out of da o [2002/08/30] docs/42210 gioria doc/en_US.ISO8859-1/articles/releng/branc f [2002/08/30] bin/42213 joe moused(8) seems to delay some mouse event o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector o [2002/08/31] kern/42274 jlemon Convert defined variable into tuneable as o [2002/09/01] ports/42295 perky New port: www/webware, Webware for Python o [2002/09/02] misc/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/02] bin/42338 imp pccard_ether should run ipf -y if ipfilte o [2002/09/03] misc/42373 mtm Update to rc scripts to make interface al o [2002/09/03] bin/42386 cleaning code from warnings in libkvm o [2002/09/03] bin/42387 cleaning code of librpcsvc from warnings o [2002/09/03] bin/42388 cleaning code from warnings in libm p [2002/09/04] kern/42404 emulation TIOCSCTTY not implemented in linuxulator o [2002/09/04] bin/42419 syslog enhancement for the nologin shell o [2002/09/04] misc/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] misc/42429 hash_action called with HASH_DELETE does o [2002/09/04] bin/42430 Add -m option to du(1) for compatibility o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? o [2002/09/05] misc/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_re s [2002/09/05] kern/42466 linux: 'ipc' typ=258 not implemented o [2002/09/05] misc/42467 netstat -s does not include fabricated pk o [2002/09/05] misc/42468 mount_smbfs incorrectly handled configura o [2002/09/06] misc/42469 After mounting by mount_smbfs directories o [2002/09/06] ports/42483 cy misc/screen problem with editors/vim-lite p [2002/09/07] ports/42503 kde kuser tries to create the wrong Mailbox o [2002/09/08] misc/42558 www http://www.freebsd.org/search produces in o [2002/09/09] bin/42609 pkg_info -qg doesn't handle missing files o [2002/09/10] ports/42642 ports-bugs cfexecd needs symlink, cfexecd, cfservd a o [2002/09/10] ports/42649 marcel linux_kdump port for source dirs != /usr/ o [2002/09/11] misc/42663 pw useradd assigns unique UID's to multip o [2002/09/11] ports/42668 grog port instant-workstation should be update o [2002/09/13] bin/42725 dwmalone Patch for calendar to support Hungarian n o [2002/09/13] kern/42728 small many problems in src/usr.sbin/ppp/* afte o [2002/09/13] bin/42732 semenu Seg fault in mount_nfs o [2002/09/14] i386/42766 Proposal to perform reboot via jump to BI o [2002/09/14] kern/42769 Boot stalls if the system has a serial co o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/15] conf/42807 imp /etc/netstart doesn't run /etc/defaults/p o [2002/09/18] misc/42934 qa installation procedure on install floppie o [2002/09/18] misc/42934 qa installation procedure on install floppie o [2002/09/19] misc/42956 dlclose gives "invalid shared object hand o [2002/09/19] bin/42974 [patch] ISO 8601 date format option o [2002/09/19] kern/42977 qa FreeBSD installer doesn't probe past EISA o [2002/09/19] kern/42977 qa FreeBSD installer doesn't probe past EISA o [2002/09/20] ports/42985 tobez Perl5 port doesn't build automatically on a [2002/09/20] bin/43139 bms /sbin/route -host option doesn't always s o [2002/09/21] kern/43154 tunwrite() does not allocate clusters for o [2002/09/21] conf/43167 Ability to have vnode based file systems o [2002/09/21] misc/43169 caps-lock led doesn't work o [2002/09/21] misc/43177 markm Updates and additions to src/games/quiz/d o [2002/09/22] misc/43262 command 'shutdown -r' (also reboot) cause f [2002/09/22] ports/43273 portmgr [patch] make bsd.port.mk checksum check a f [2002/09/23] ports/43282 dirk SONY CD-RW CRX10U don't work with sysutil o [2002/09/25] kern/43355 idad driver will work if logical drives d o [2002/09/25] bin/43367 incorrect report from 'who' after 'shutdo o [2002/09/25] misc/43368 pkg_create fails if target directory does o [2002/09/25] bin/43372 Broken struct ufs_args in ufsmount.h o [2002/09/29] misc/43470 blackend Solid State / x109 article out of date. o [2002/09/29] bin/43471 `ls -l` shows wrong size for big files (> o [2002/09/29] misc/43474 murray dhcp.* values not set in kenv by bootp cl f [2002/09/29] ports/43484 ports-bugs Update port net/arla to 0.35.9 o [2002/09/29] misc/43494 wish: resolv.conf created (again) later i o [2002/09/29] misc/43495 awk - rc/diskless references by full path o [2002/09/29] misc/43496 touch - rc/diskless references by full pa o [2002/09/29] misc/43497 mount -t nfs -> crunchgen incompatible o [2002/09/29] conf/43500 rc.syscons "allscreens" improvements o [2002/09/30] misc/43539 Cannot mout floppy on Compaq Proliant ML3 a [2002/09/30] ports/43540 arved Update Port net/cnet 1.7.7 -> 2.0.3 o [2002/10/01] java/43565 znerd jakarta-tomcat41 port breaks upgrades o [2002/10/01] docs/43569 doc src/share/examples/worm/README out-of-dat o [2002/10/02] kern/43577 [PATCH] New kernel option SHUTDOWN_BEEP o [2002/10/02] bin/43582 passwd(1) fails on nonexistent users o [2002/10/02] bin/43596 pkg_add does not propogate 'remote' to de o [2002/10/02] kern/43610 static-ize some symbols in digi driver o [2002/10/02] kern/43611 static-ize some symbols in sys/crypto o [2002/10/02] kern/43613 static-ize symbol in smbfs code o [2002/10/02] kern/43616 static-ize some functions in sys/net/zlib o [2002/10/03] java/43641 znerd Port www/orion should log to /var/log o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/04] bin/43675 tjr uniq prints last, not first of the identi o [2002/10/05] kern/43716 puc driver does not recognize Lava Dual-6 o [2002/10/07] ports/43771 linimon LaTeX ports mixed between print and textp o [2002/10/07] conf/43800 imp Belkin 10/100 Base-TX PCMCIA card not rec o [2002/10/07] conf/43805 imp Asante' FriendlyNet AeroLAN AL1011 802.11 o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] docs/43823 simon [PATCH] update to environ(7) manpage o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/09] bin/43857 hm conflicting types in /usr/src/usr.sbin/i4 o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/09] ports/43880 ports-bugs Names of Emacs ports are misleading o [2002/10/10] misc/43886 markm local exploitable overflow in rogue o [2002/10/10] misc/43905 kqueues: EV_SET(kevp++, ...) is non-int o [2002/10/10] ports/43911 grog instant-workstation depend annoyance o [2002/10/11] kern/43916 Olicom OC-2220 (PC-card) hangs on ifconfi o [2002/10/11] bin/43938 roberto ntpd binds to local aliases o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/11] java/43947 znerd Checkstyle port should install checkstyle o [2002/10/11] ports/43956 edwin New port: x11-wm/ion-devel o [2002/10/12] docs/43980 darrenr ipf(5) missing "gre" keyword o [2002/10/13] ports/44019 ache Fixes for ftp/wu-ftpd 2.6.2 o [2002/10/13] docs/44034 trhodes Multiple sysctl variables are not documen a [2002/10/14] java/44039 znerd Request for port: CruiseControl a [2002/10/14] java/44041 znerd Generate bsd.java.mk from an XML file o [2002/10/14] misc/44044 sound 4.7-R Freezes half the times snd.ko is lo o [2002/10/14] misc/44058 /dev/ch* is created without group write p o [2002/10/14] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/15] kern/44098 RealTec-based NIC initialization problem p [2002/10/15] kern/44121 [PATCH] bogus cast removal in hea driver o [2002/10/15] misc/44122 tun0 gets a second ip adress after a disc o [2002/10/16] misc/44150 Diskless kernel may crash, depends on the o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on o [2002/10/17] www/44181 www www "Release Information" organization o [2002/10/17] bin/44188 qa cannot install FreeBSD 4.0-4.6 to Compaq o [2002/10/17] bin/44188 qa cannot install FreeBSD 4.0-4.6 to Compaq o [2002/10/17] bin/44200 ftp site keeps sockets open. o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/18] kern/44218 Init dies during boot after upgrade from o [2002/10/18] java/44219 java Update port: textproc/cocoon to 2.0.3 o [2002/10/18] java/44251 java Create stylebook port o [2002/10/18] ports/44252 x11 XFree86-4-Server port removes/overwrites o [2002/10/19] ports/44258 obrien pkg_update ate my Muttrc o [2002/10/19] kern/44260 LINT does not list pseudo-device tap o [2002/10/19] i386/44262 tanimura Problems with nrp driver o [2002/10/19] kern/44267 One more modem PNP id for /usr/src/sys/is o [2002/10/19] ports/44273 dwcjr improved net/samba start script o [2002/10/19] bin/44277 devinfo is not C++ safe o [2002/10/19] misc/44286 roberto /etc/defaults/rc.conf uses the obsolete n o [2002/10/19] kern/44293 thomas Unable to access audio CD under Linux emu o [2002/10/19] ports/44295 linimon New port: lang/mlton, an optimizing Stand o [2002/10/20] misc/44307 UTF-8 locales support o [2002/10/20] bin/44310 make ppp(8) add clients MAC address to al o [2002/10/21] bin/44343 [PATCH] sbin/fsdb.c o [2002/10/21] kern/44365 introduce ulong and unchar types o [2002/10/21] kern/44372 roberto some kernel options prevent NTP clock syn o [2002/10/22] misc/44379 libutil: property.c, properties_read() ba o [2002/10/22] standards/44394alfred restrict qualifiers missing from sys/sock o [2002/10/23] docs/44400 doc ipfw(8) has contradictions in bridged and o [2002/10/23] standards/44425standards getcwd() succeeds even if current dir has o [2002/10/24] java/44432 znerd Ant-based port installs should use Jikes o [2002/10/24] docs/44435 doc sysctl manpage: add example for tcsh f [2002/10/24] kern/44439 jhb puc doesn't find all 4 ports on SIIG Cybe o [2002/10/24] kern/44450 joe USB support FAILURE for device that was s o [2002/10/26] misc/44500 AC1001 Gigabit NIC Worked o [2002/10/28] kern/44580 NFS updates file access time when file is o [2002/10/29] misc/44587 dev/dpt/dpt.h is missing defines required o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for f [2002/10/29] conf/44717 dougb update login.conf and unify login capabil o [2002/10/30] i386/44762 sound sound (ie, not system beeps) stop working o [2002/11/04] kern/44872 dgb driver update o [2002/11/04] misc/44894 markm as a local non-root user and remote it's o [2002/11/04] misc/44915 qa 'choose installation media' choose CD-ROM o [2002/11/04] misc/44915 qa 'choose installation media' choose CD-ROM o [2002/11/04] java/44922 java JVM crash o [2002/11/05] gnu/44984 Send-pr can use environmental variable $F o [2002/11/06] docs/45011 trhodes style(9): '->' and '.' don't require spac o [2002/11/07] misc/45026 Can't set next password change date on NI o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/09] www/45169 www suggested update for ports index page on o [2002/11/09] kern/45182 sound fm801.c does not recognize a FM801 based o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/11] ports/45216 joerg devel/bcc port is incomplete o [2002/11/11] misc/45222 daily rejected mail hosts report too long o [2002/11/11] conf/45226 mtm Fix for rc.network, ppp-user annoyance o [2002/11/11] bin/45229 restore(8) -i: ls reports mising files as p [2002/11/12] alpha/45240 alpha pstat -f column headings misaligned on Al o [2002/11/12] gnu/45246 sobomax tar --listed-incremental fails for Solari o [2002/11/12] misc/45254 qa Sysinstall installs things it should not o [2002/11/12] misc/45254 qa Sysinstall installs things it should not o [2002/11/13] misc/45273 contrib/smbfs: error in examples/dot.nsmb f [2002/11/14] kern/45285 jhb Support for yet another PCI multiport car o [2002/11/14] ports/45289 mita ja-dvi2ps-3.2 does not handle \special co o [2002/11/14] kern/45293 kevent denies to observe /dev/tty o [2002/11/16] bin/45333 [PATCH] New option -r for chown and chgrp o [2002/11/16] ports/45357 jmz PATCH: textproc/ispell - added bulgarian o [2002/11/17] docs/45371 doc man page for exports lacks information on o [2002/11/18] ports/45414 portmgr make update in /usr/ports missing default o [2002/11/19] bin/45486 Support for human readble (-h/-H) output s [2002/11/20] bin/45547 sos a patch to make burncd handle .wav files. o [2002/11/21] www/45560 phantom russian FAQ trouble on www.FreeBSD.org a [2002/11/22] bin/45584 tjr read builtin function of sh does not read o [2002/11/22] ports/45596 dwcjr net/samba v2.2.7 fetch error - maybe a fi o [2002/11/22] conf/45608 qa Install should config all ether devices, o [2002/11/22] conf/45608 qa Install should config all ether devices, o [2002/11/22] ports/45612 marcel port devel/linux_kdump does not compile s [2002/11/22] ports/45613 portmgr make update doesn't o [2002/11/23] bin/45659 portmap can not be bound to only loopback o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/24] bin/45701 markm spelling error in rogue o [2002/11/25] misc/45704 [PATCH] request to change cp866b to cp866 o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/25] standards/45738tjr sh "unset" built-in violates IEEE Std 100 o [2002/11/26] bin/45749 [PATCH] rm -f in MS-DOS directory o [2002/11/26] kern/45753 linux-sun-jdk1.4.1 calls SIOCGIFCONF ioct o [2002/11/26] kern/45785 emulation Linux WineX seems to require a few new li o [2002/11/27] kern/45793 Invalid media subtype aliases in if_media o [2002/11/28] misc/45830 KDC has problems when listening to IPv6 a o [2002/11/29] misc/45839 [PATCH] Remove some duplicate fortunes o [2002/11/29] ports/45843 dbaker sysutils/3dm - needs to detect and create p [2002/11/30] misc/45874 ache [PATCH] FreeBSD does not know about ca_ES o [2002/12/01] bin/45896 dwmalone setnetgrent() should return error code o [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/03] ports/45963 anders the mail/majordomo port looks for majordo o [2002/12/03] kern/45968 des linprocfs is missing maps f [2002/12/06] ports/46034 gioria new ports: databases/mantis o [2002/12/07] conf/46062 kris Remove skel from BSD.root.dist. o [2002/12/07] kern/46080 ipfw [PATCH] logamount in ipfw2 does not defau o [2002/12/08] ports/46092 tg ports/print/acroread on i386 needs Linux o [2002/12/08] bin/46107 killall(1) can prematurely kill itself o [2002/12/08] bin/46110 tomsoft why does fsck work with / mounted r/o but o [2002/12/09] standards/46119standards Priority problems for SCHED_OTHER using p o [2002/12/09] bin/46123 fenner PATCH: tcpdump needs -a flag if netmask i o [2002/12/10] kern/46159 ipfw ipfw dynamic rules lifetime feature o [2002/12/10] misc/46163 gad lpc problem. Only root can modify despit o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/11] docs/46200 doc fix for ru_RU.KOI8-R/books/porters-handbo o [2002/12/13] conf/46235 rwatson Sysinstall NTP servers for Finland requir o [2002/12/13] i386/46238 dds [code] Driver for the PCL-724 ISA card o [2002/12/13] kern/46250 sound Sound driver not working correctly on SON o [2002/12/16] docs/46291 doc correlation between HZ kernel config para o [2002/12/16] docs/46295 doc please add information to Nvi recovery em o [2002/12/16] ports/46317 obrien ports/editors/vim/files/patch-02 is stale o [2002/12/17] misc/46328 gad patch for lpd o [2002/12/18] kern/46368 MAXDEP in isa/pnpparse.c is too small s [2002/12/19] bin/46382 ps(1) could use a "repeat" mode o [2002/12/20] misc/46409 Certain periodic scripts check broken NFS o [2002/12/21] standards/46441tjr /bin/sh does not do parameter expansion i o [2002/12/21] i386/46453 [INTERLATIONALIZATION] cons25l2, ISO8859- o [2002/12/22] ports/46478 jmz Fix build on -current for graphics/pixmap p [2002/12/22] ports/46483 trevor [patch] Fix gcc295 on current/i386 f [2002/12/23] ports/46487 edwin New port: devel/cbind - Translator for "t o [2002/12/23] kern/46488 jmg usb driver do not send detach events on S o [2002/12/23] standards/46504standards Warnings in headers o [2002/12/23] ports/46510 ports-bugs security/ssh does not correctly store the o [2002/12/25] ports/46522 sobomax xtraceroute-0.9.0 fails with "OpenGL not o [2002/12/27] misc/46555 enhancements for libradius o [2002/12/27] kern/46564 ipfw IPFilter and IPFW processing order is not o [2002/12/30] conf/46645 [PATCH] rc.shutdown state table saving ha o [2002/12/31] ports/46655 dwcjr net/samba beauty fix o [2003/01/01] misc/46670 qa 5.0-RC2 install leaves CD drawer locked. o [2003/01/01] misc/46670 qa 5.0-RC2 install leaves CD drawer locked. o [2003/01/01] bin/46672 dump(8) program gives unnecessary -L warn o [2003/01/02] docs/46709 doc tables in terminfo.5 are broken o [2003/01/03] kern/46734 joystick driver doesn't allow for anythin a [2003/01/03] conf/46746 bms No way to set link addresses through rc.c o [2003/01/04] misc/46758 moused enhancements p [2003/01/05] docs/46787 trhodes compress(1) manpage missing BUGS; other c o [2003/01/05] docs/46793 doc DEVICE_POLLING can not be used with SMP, o [2003/01/07] bin/46830 Make pkg_add respect prefix for dependanc o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] bin/46905 qa FreeBSD 5.x cannot be installed from mult o [2003/01/09] bin/46905 qa FreeBSD 5.x cannot be installed from mult o [2003/01/09] i386/46912 johan chflags nonodump fails o [2003/01/09] conf/46913 darrenr ipf denied packets of security run output o [2003/01/09] docs/46918 trhodes ipsec(4) does not reference the IPSEC RFC o [2003/01/10] bin/46925 sysctl -a goes into an infinite loop... o [2003/01/10] kern/46961 bridging between vlan-interfaces on same o [2003/01/11] kern/46973 syscons virtual terminals switching featu o [2003/01/12] misc/46998 small [patch] Support PicoBSD source in other l o [2003/01/12] ports/47002 roam New port: mail/vodmr - ODMR/ATRN server f o [2003/01/13] ports/47018 sf Teach ftp/wget new very useful feature - o [2003/01/13] misc/47029 sound Static and popping with Hercules GameThea o [2003/01/13] ports/47036 portmgr bsd.port.mk has bad comments WRT dependen a [2003/01/14] ports/47068 arved Update port: devel/bison to 1.875 o [2003/01/14] docs/47085 doc boot(8) manpage is incomplete according t o [2003/01/18] misc/47187 [patch] fix printf specifier in src/sys/b o [2003/01/18] kern/47200 joe USB port is disabled when Kodak DX4900 is o [2003/01/18] ports/47203 ade upgrade of automake to try on the cluster o [2003/01/18] conf/47204 qa base + XFree86 install fails -- crypto di o [2003/01/19] i386/47223 hm [PATCH] pcvt(4), ESC sequences do not cha o [2003/01/19] bin/47235 top reports inaccurate cpu usage s [2003/01/19] bin/47237 des HTTP_PROXY with libfetch stalls at 99% o [2003/01/20] kern/47274 joe umodem update to support motorola v66 pho o [2003/01/21] kern/47311 mdodd [PATCH] Kernel support for NVIDIA nForce2 o [2003/01/21] misc/47314 qa Install requires a swap partition. o [2003/01/21] misc/47314 qa Install requires a swap partition. o [2003/01/21] kern/47349 Fake a sound ioctl (plus linux hook) o [2003/01/21] bin/47350 rc.network supports only one ppp profile o [2003/01/22] kern/47359 dd panic after kldunload snp o [2003/01/22] i386/47376 hm [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd ch o [2003/01/22] bin/47387 [PATCH] gprof -K still requires "a.out" a o [2003/01/24] java/47448 phantom linux-blackdown-jdk-1.4.1: syscall mmap2 o [2003/01/27] bin/47540 ru Make natd configurable in running state w o [2003/01/27] bin/47560 tar 'z' option gzip'd output has extra ga o [2003/01/27] bin/47566 grog Suggested patch: vinum status verificatio o [2003/01/27] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/27] misc/47576 [PATCH] factor(6)ing of negative numbers a [2003/01/28] ports/47593 nork Update port: www/elinks o [2003/01/28] docs/47594 doc [PATH] passwd(5) incorrectly states allow o [2003/01/28] bin/47596 daily security run complains if timezone o [2003/01/28] misc/47601 ru Additional subdir targets o [2003/01/30] kern/47675 njl usb/umass problems o [2003/01/30] docs/47690 doc builtin(1) manpage is wrong about externa o [2003/01/30] docs/47705 doc wc(1) manpage has poor explanations. o [2003/01/31] kern/47731 reboot goes panic each time o [2003/02/01] kern/47791 imp Idea for what to do on insert o [2003/02/02] bin/47815 stty -all should work. f [2003/02/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/02] ports/47834 ports-bugs mysql-server-3.23.55 upgrade should be mo o [2003/02/03] sparc64/47845sparc64 4 second daily clock drift p [2003/02/04] misc/47906 murray options screen not return previous screen o [2003/02/04] misc/47908 qa /stand/sysinstall can't display document o [2003/02/04] misc/47908 qa /stand/sysinstall can't display document o [2003/02/04] ports/47913 ume idled.8 man page conflict in ports mail/c a [2003/02/05] ports/47957 seanc ruby-snmp is broken o [2003/02/05] docs/47991 trhodes Handbook section on upgrading kernel says o [2003/02/06] i386/48014 joe moused fails to correctly identify usb mo f [2003/02/07] docs/48038 doc [PATCH] add Tips and Tricks section into o [2003/02/07] ports/48052 obrien Upgrading vim blows away locally-added pl o [2003/02/07] ports/48059 roam Nitpicks for the comms/qpage port o [2003/02/08] docs/48101 brueffer There's no documentation on the fixit dis o [2003/02/08] conf/48105 /etc/disktab has incomplete duplication o o [2003/02/09] misc/48110 change CVSROOT/log_accum.pl to not send m o [2003/02/10] misc/48133 improvied vi recovery notification o [2003/02/10] ports/48140 andreas Update Port: print/apsfilter (conditional o [2003/02/11] kern/48172 ipfw ipfw does not log size and flags o [2003/02/11] conf/48195 /var/db/mounttab error on diskless boot o [2003/02/12] ports/48214 trevor Update port: audio/festogi-spanish to 2.0 o [2003/02/12] kern/48216 mike Linux uname returns wrong hostname inside f [2003/02/12] ports/48217 linimon New Port: www/mod_frontpage13 and www/mod o [2003/02/14] ports/48273 des FlightGear can only be run once between b o [2003/02/14] ports/48281 obrien Patch editors/vim to use fetch instead of o [2003/02/15] bin/48309 pppoe connections fail to establish if th o [2003/02/15] bin/48313 [patch] make yacc(1) use getopt(3) o [2003/02/16] bin/48342 joe [PATCH] usbd dynamic device list. o [2003/02/17] ports/48397 jmz malformed make file in /usr/ports/comms/m o [2003/02/17] bin/48399 Can't put URL in GECOS phone field o [2003/02/18] ports/48426 sobomax [PATCH] digger-vgl does not support conso o [2003/02/18] ports/48434 obrien shells/bash2: process substitution broken o [2003/02/18] bin/48443 mtm /usr/sbin/periodic executes too many file o [2003/02/18] misc/48444 change to count connection attempts inste o [2003/02/19] kern/48468 imp puc driver for Nm9845 o [2003/02/19] ports/48470 nork [PATCH www/flashpluginwrapper] add helper o [2003/02/19] kern/48471 Private IPC for every jail. [PATCH] o [2003/02/22] conf/48566 [PATCH] /etc/defaults/make.conf stales af a [2003/02/22] conf/48569 trhodes make.conf misses comments on some options o [2003/02/23] kern/48599 [PATCH] syscons cut-n-paste logic is brok o [2003/02/23] bin/48603 Getopt is broken. Patch included. o [2003/02/24] gnu/48638 [PATCH] some bug fixs in libdialog o [2003/02/25] alpha/48676 alpha Changing the baud rate of serial consoles o [2003/02/25] bin/48679 (5.0) xterm termcap/info entry seems prob o [2003/02/25] ports/48683 nik 'passivetex' port out of date, checksum e o [2003/02/26] i386/48738 sound ForteMedia FM801 chipset based sound card o [2003/02/27] kern/48759 demon kldstat shows module after unsuccessfull o [2003/02/28] docs/48767 doc wrong key numbers for left/right windows o [2003/02/28] conf/48775 iso8859-15 termcap entries needed o [2003/02/28] bin/48784 yar No way to disable directory listings in f o [2003/02/28] ports/48786 wjv update biology/EMBOSS to the latest relea s [2003/03/02] ports/48832 linimon New port: print/foomatic-db-hpijs o [2003/03/02] kern/48837 mbr dc cannot handle DC21142/3 PCI/CardBus 10 o [2003/03/03] misc/48870 [PATCH] allow to cancel interface status o [2003/03/03] kern/48894 Improvements to the NFS read-ahead heuris o [2003/03/04] bin/48914 mike [PATCH] Add flag to whois(1) to query IAN s [2003/03/05] bin/48962 des [PATCH] modify /usr/bin/fetch to allow ba o [2003/03/06] kern/48976 nwfs.ko oddity o [2003/03/06] docs/48980 doc [PATCH] nsgmls -s errors and sect. 3.2.1 o [2003/03/06] bin/48989 qa Sysinstall's partition editor gets confu o [2003/03/06] bin/48989 qa Sysinstall's partition editor gets confu o [2003/03/07] i386/49023 gad Mod to LPD (printjob.c) to pass source fi o [2003/03/08] kern/49037 sound ESS Maestro chip misdetected as 'chip2' o [2003/03/08] kern/49039 add support for RS485 hardware where dire o [2003/03/10] ports/49076 roam stunnel logs normal end of connection as o [2003/03/10] ports/49082 knu portupgrade runs slow o [2003/03/10] kern/49085 jail statfs and mountpoint information le o [2003/03/10] kern/49086 ipfw [patch] Make ipfw2 log to different syslo f [2003/03/12] ports/49955 portmgr [PATCH] bsd.port.mk: add target to automa o [2003/03/12] kern/49957 mbr CRC32 generator should be the common rout o [2003/03/12] bin/49959 ipfw ipfw tee port rule skips parsing next rul o [2003/03/12] misc/49967 Minor fixes to fortunes data o [2003/03/13] kern/49980 patch to enable ThinkPAD X24 sound device o [2003/03/13] bin/49983 markm [patch] Fix bug & improve telnet status o f [2003/03/14] conf/50000 dougb ntpdate not ran before (x)ntpd o [2003/03/15] ports/50022 nik Port: print/jadetex (update pkg-message) o [2003/03/15] ports/50039 dwcjr Samba port fails to compile with winbind o [2003/03/15] conf/50040 nectar Missing $FreeBSD$ in /etc/ssl/openssl.cnf o [2003/03/16] ports/50044 dwcjr allow samba to be built automatically o [2003/03/17] ports/50068 linimon New port: databases/sybase_ase (Sybase AS o [2003/03/18] misc/50106 Make 'make release' more flexible behind o [2003/03/18] i386/50110 joe Astra 2100U scanner being detected as /de o [2003/03/18] java/50114 znerd linux-sun-jdk13 BUILD_DEPENDS not picked o [2003/03/19] bin/50118 grog calendar(1) dumps core if there is ./cale o [2003/03/20] misc/50154 darrenr Add /etc/periodic/security/610.ipf6denied o [2003/03/21] ports/50157 lioux Gnome-2.2 sound recorder abends with long p [2003/03/21] misc/50160 ache sl_SI.ISO8859-2 collation sequence is wro o [2003/03/22] kern/50201 3ware RAID 5 resulting in data corruption o [2003/03/23] docs/50211 doc [PATCH] Fix textfile creation p [2003/03/24] docs/50248 ceri New FreeBSD books o [2003/03/24] ports/50258 portmgr [patch] refactor /usr/ports/Tools/portbui o [2003/03/24] ports/50262 tg lang/py-mx-base (mxDateTime) is broke o [2003/03/25] bin/50300 Make the loader's use of terminal-control o [2003/03/25] bin/50310 ru natd / libalias fix to allow dcc resume i p [2003/03/26] bin/50328 kris ctm_smail doesn't handle large deltas wel o [2003/03/26] bin/50331 Changing uid with pw causes duplicate use o [2003/03/27] bin/50365 [PATCH] rc.sysctl cannot handle values co o [2003/03/27] misc/50370 phantom NLSOWN set to ${SHAREGRP} in f [2003/03/28] docs/50391 doc Incorrect information in a man o [2003/03/30] bin/50461 ctm cannot handle the large files current o [2003/03/30] ports/50466 grog The benchmarks/rawio port does not seem t o [2003/04/01] kern/50526 Update to #! line termination o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile o [2003/04/03] docs/50573 doc return values for res_query/res_search/re o [2003/04/04] bin/50613 [PATCH] pppd(8) incorrect CBCP response f o [2003/04/06] kern/50644 rsm [PATCH] Update xe driver: multicast, hard o [2003/04/06] bin/50656 /bin/cp - wrong error on copying of multi o [2003/04/07] ports/50662 ume sysutils/gkrellm2 interaction with Metaci o [2003/04/07] ports/50663 ume sysutils/gkrellm2 - it is not possible to o [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ o [2003/04/07] kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always re o [2003/04/08] ports/50724 knu [PATCH] pkg_fetch saves full filename p [2003/04/08] docs/50735 brueffer Small diff to the developers handbook & o o [2003/04/09] bin/50749 ipfw ipfw2 incorrectly parses ports and port r o [2003/04/10] docs/50773 doc NFS problems by jumbo frames to mention i o [2003/04/10] ports/50799 yoichi Lisp Packages install directory should no o [2003/04/11] ports/50813 nork New port: japanese/mailman o [2003/04/11] ports/50835 dirk cdrtools port uses the config path "/etc/ o [2003/04/11] ports/50840 ports-bugs mail/squirrelmail - Port Docs in wrong lo o [2003/04/12] ports/50864 trevor Update audio/festlex-ogi o [2003/04/12] ports/50866 lioux [PATCH] Introduce patch to qmail-1.03 to o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev o [2003/04/12] ports/50869 trevor Update audio/festvox-abc o [2003/04/12] ports/50880 roam Request for (optional) addition of tcplim p [2003/04/13] bin/50924 "vmstat -f" says "unimplemented" but data s [2003/04/14] i386/50929 AMD K6-2+ processor is identified incorre o [2003/04/14] kern/50948 darrenr BUG: @0 does not insert at the beginning o [2003/04/14] bin/50949 BUG: mtree doesn't honor the -P when chec o [2003/04/14] bin/50955 ru [PATCH] natd / libalias support for multi o [2003/04/14] conf/50956 daily_status_disks_df_flags in /etc/defau o [2003/04/15] bin/50971 du(1) doesn't understand UF_NODUMP flag p [2003/04/15] misc/50979 tomsoft [PATCH] Some spelling corrections in sbin o [2003/04/15] bin/50988 [Patch] find -size -- express argument in o [2003/04/15] ports/50996 openoffice editors/ooodict-hu_HU port can moved to h o [2003/04/15] kern/51009 Buggy aue driver fixed. o [2003/04/16] bin/51070 add -p option to pom [PATCH] o [2003/04/16] kern/51074 joe pointer arithmatic error in ugen.c o [2003/04/17] kern/51082 FEATURE: More descriptive message on drop o [2003/04/17] ports/51087 ports-bugs spamass-milter can not be built with send o [2003/04/17] bin/51091 fenner [FEATURE] Add -A (print ASCII) flag to tc o [2003/04/17] kern/51111 darrenr ipf doesn't allow outbound IPv6 packets u o [2003/04/17] kern/51120 MSGBUF_SIZE doesn't work in makefiles a [2003/04/18] docs/51133 murray RSH environmental variable not described s [2003/04/18] kern/51137 config(8) should check if a scheduler is o [2003/04/18] bin/51148 Control the cache size for pwd_mkdb to sp o [2003/04/19] bin/51151 du hardlinkmatching is slow - fix include f [2003/04/19] ports/51152 portmgr bsd.port.mk: generic SHEBANG_FILES o [2003/04/19] bin/51165 Login does not honor .hushlogin o [2003/04/19] misc/51167 dougb [PATCH] Makefile for /etc/namedb. o [2003/04/20] kern/51186 jmg pointer arithmatic error in ugen.c o [2003/04/20] ports/51197 eik New Port: net/rendezvous (Apple's ZeroCon o [2003/04/21] bin/51205 nectar openssl in base system is not compiled th o [2003/04/22] standards/51292standards [PATCH] add ecvt()/fcvt()/gcvt() function o [2003/04/22] bin/51296 grog calendar wrong for dates based on day+-nu o [2003/04/25] ports/51415 kevlo Port textproc/xerces-j should be updated o [2003/04/25] ports/51424 dirk www/httrack should be updated to lastest a [2003/04/26] ports/51446 trevor Update port: audio/fest* to last versions o [2003/04/27] docs/51480 dds Multiple undefined references in the Free o [2003/04/28] bin/51488 Compat patch: more(1) allowed filename to p [2003/04/28] misc/51504 ache New file: src/share/mklocale/zh_CN.GBK.sr o [2003/04/29] docs/51608 phantom [PATCH] Add Internet Archive Wayback Mach o [2003/05/01] ports/51651 kde KDE 3.1.1a: KProcess' stdout redirection o [2003/05/01] bin/51655 savecore needs ${dumpdev} as an argument a [2003/05/01] ports/51663 roam [PATCH] vpopmail-stable fix for using vmo o [2003/05/02] ports/51693 cy [PATCH] Unbreak x11-wm/fvwm2-devel p [2003/05/03] misc/51729 ache A patch that can make freebsd support zh_ o [2003/05/04] ports/51757 edwin [REPOCOPY WAITING] Maintainer update: isc o [2003/05/05] ports/51791 tg Change-request: shell/pdksh (pdksh-5.2.14 o [2003/05/06] conf/51830 trhodes new entries in termcap o [2003/05/06] docs/51845 hmp [PATCH] catch up getfsstat.2 and statfs.2 o [2003/05/06] kern/51874 Apacer HandySteno should have DA_Q_NO_6_B o [2003/05/06] docs/51875 doc atkbd(4) adjustment o [2003/05/06] docs/51891 doc DIAGNOSTICS in ed driver manpage don't ma o [2003/05/06] ports/51900 trevor [Update Port]: audio/fest* to last versio o [2003/05/07] misc/51920 Collation for no_NO.ISO8859-1 o [2003/05/07] docs/51921 doc ls(1) manpage lacks some information abou o [2003/05/07] ports/51947 mharo Analog port does not include anlgform.htm o [2003/05/08] kern/51958 joe update for urio driver [PATCH] o [2003/05/09] ports/52006 eik rsync fails with protocol problems s [2003/05/09] ports/52016 linimon New port: lang/harbour - A Clipper-compat f [2003/05/10] ports/52024 lioux port multimedia/libdv fails to build o [2003/05/10] kern/52026 joe umass driver support for InSystem ISD200 o [2003/05/10] bin/52032 markm Telnet option contra telnet protocol o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2003/05/11] bin/52072 maxim Wrong behaviour of the ftpd when the OOB o [2003/05/12] www/52105 phantom Remove 404s from gallery.xml o [2003/05/12] ports/52106 phantom New port: java/javaws: Java Web Start 1.2 s [2003/05/13] ports/52173 portmgr bsd.port.mk - Modify USE_GETOPT_LONG opti o [2003/05/13] bin/52190 [Patch] decode more syscalls in truss o [2003/05/14] i386/52249 i386 [PATCH] Bootmanager shows NTFS partitions o [2003/05/14] misc/52255 small picobsd build script fails under FreeBSD o [2003/05/14] misc/52256 small picobsd build script does not read in use o [2003/05/14] kern/52258 imp pccard non-functional, repeated "card ins o [2003/05/15] bin/52271 qa sysinstall panics in machine with no hard o [2003/05/15] ports/52272 cy security/aide: Aide-0.9 complains of "@@e s [2003/05/15] ports/52303 des [patch] add knob to databases/gnats to re o [2003/05/15] ports/52310 jedgar sysutils/grub does not send a dhcp option o [2003/05/16] ports/52311 patrick [ADD MAKE ARGS]:: WITH_GTK And WITH_THREA o [2003/05/18] i386/52401 i386 5.1-BETA syslogd not recording entries fr o [2003/05/18] i386/52408 i386 quitting gnome2-2.2.1_1 results in LOR o [2003/05/18] ports/52415 obrien missing files in bash2 ports collection o [2003/05/18] i386/52416 i386 Requesting ethernet driver for Broadcom 4 o [2003/05/18] ports/52420 mita japanese/xpdf installation terminated whe o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter f [2003/05/19] conf/52432 joe Install: drivers.flp won't load with USB f [2003/05/19] ports/52439 lioux Request: SMTP AUTH for qmail o [2003/05/19] docs/52448 simon [patch] Misc man page reference fixes o [2003/05/20] bin/52469 ppp: Multiple devices using UDP don't wor o [2003/05/20] bin/52489 [PATCH] ps tpt does not work o [2003/05/21] bin/52517 murray New functionality for /usr/bin/Mail f [2003/05/22] bin/52601 mbr [PATCH] rpc.yppasswdd fails if master.pas o [2003/05/23] kern/52623 Error in driver for the Intel EtherExpres o [2003/05/25] docs/52672 doc Porter's Handbook: couple of corrections o [2003/05/26] ports/52706 portmgr bsd.port.mk issues warning if a site is e o [2003/05/27] kern/52725 [PATCH] installincludes for kmods o [2003/05/27] kern/52735 njl Add support for one more type of USB flas f [2003/05/27] bin/52746 tcsh fails to handle large arguements f [2003/05/28] ports/52747 sergei port update - mail/p5-Mail-Ezmlm o [2003/05/28] kern/52752 [PATCH] SMBus controller on ICH4 not reco o [2003/05/28] kern/52764 Impossible to build kernel with COPTFLAGS a [2003/05/28] ports/52765 portmgr [PATCH] Uncompressing manual pages may fa o [2003/05/28] ports/52779 fenner please make rat and sdr use tcl/tk8.3 o [2003/05/29] bin/52782 user ppp dumps core when doing pppctl "sh o [2003/05/29] ports/52793 dwcjr Samba 2.2.8a printing woes o [2003/05/29] ports/52797 lev devel/subversion does not install any too o [2003/05/31] ports/52825 lioux goggles-0.5.5 compile under 5.1-BETA2 fai s [2003/05/31] bin/52826 Feature Request: Adding Timestamps to pkg o [2003/06/02] docs/52858 ceri Add the Bell System Technical Journal to o [2003/06/02] ports/52859 dwcjr Samba 2.2.8a (2.2.8)- broken support for f [2003/06/02] ports/52877 ports-bugs Non-Maintainer-Update: mail/postfix add s o [2003/06/02] docs/52878 doc [PATCH] security(7): small clairification o [2003/06/02] alpha/52882 alpha fpsetprec/fp_prec_t unsupported on alpha? o [2003/06/03] ports/52906 roger vid-1.0.1 from ports does not work with U o [2003/06/03] bin/52907 phk [PATCH] more malloc options for debugging s [2003/06/03] ports/52917 portmgr [PATCH] bsd.port.mk: update default value o [2003/06/04] ports/52941 ports-bugs security/poc card-terminal problems o [2003/06/04] kern/52943 reproducable system stuck just brefore mu o [2003/06/04] kern/52960 jmg kbdcontrol macros don't work when len = 1 o [2003/06/05] i386/52971 i386 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/06] kern/52980 mbr [patch] dc(4) driver fails to init Intel o [2003/06/06] kern/53005 njl USB IntelligentStick SCSI DA quirk o [2003/06/07] kern/53025 joe [PATCH] ugen does not allow O_NONBLOCK fo o [2003/06/07] kern/53027 rsm [CHANGE-REQUEST] Better Entry for Intel P f [2003/06/08] kern/53067 njl Add support for the PQI USB Flash Disk o [2003/06/09] conf/53131 qa "ALL" could not turn check BOXes ON at pa o [2003/06/09] conf/53131 qa "ALL" could not turn check BOXes ON at pa a [2003/06/11] ports/53190 lev update to devel/subversion f [2003/06/11] ports/53193 linimon [Patch] unbroke port: math/simpack fix co o [2003/06/11] conf/53197 re default tag of RELENG_5_1 standard-supfil o [2003/06/11] i386/53200 i386 5.1-RC1 SMP kernel boot gags at "APIC_IO: o [2003/06/12] kern/53264 sound PCM interrupt not routed on Sony VAIO lap o [2003/06/12] kern/53265 imp Make Sierra A555 work in FreeBSD o [2003/06/13] docs/53271 hmp the bus_dma man page fails to document al o [2003/06/13] bin/53288 tail will sometimes display more lines th o [2003/06/13] docs/53303 doc mount(2) man page error o [2003/06/14] docs/53315 doc [PATCH] remove extraneous whitespace at t o [2003/06/14] i386/53324 i386 pam_group problems (PAM_RUSER used instea p [2003/06/14] misc/53327 Important fix for Latin-american keymap o [2003/06/15] bin/53341 qa dump frequency in sysinstall is always th o [2003/06/15] bin/53341 qa dump frequency in sysinstall is always th o [2003/06/16] bin/53366 mtm rc.d/root is trying "mount /" while start o [2003/06/16] bin/53377 [PATCH] su does not return exit status of o [2003/06/16] kern/53383 adding Terratec TValue to bktr driver o [2003/06/17] kern/53417 sound Bad Recordings on AC97 onboard audio syst o [2003/06/17] docs/53422 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53424 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53425 ceri [patch] rework of parts of Porter's Handb o [2003/06/18] docs/53454 doc wrong sample code in manpage of wcwidth(3 o [2003/06/18] ports/53466 trevor [non-maintainer] delete port audio/spiral o [2003/06/18] bin/53475 cp(1) copies files in reverse order to de o [2003/06/19] docs/53501 doc [PATCH] Handbook: update snapshots sectio o [2003/06/19] kern/53506 Support gzipped modules. (partial patch) o [2003/06/19] bin/53520 su to another user does not update utmp o [2003/06/20] bin/53560 logging domain names in wtmp is retarded s [2003/06/20] ports/53564 perky [non-maintainer] lang/stackless_python fa o [2003/06/20] docs/53575 doc Change to Handbook Section 20.9 o [2003/06/21] docs/53596 doc Updates to mt manual page o [2003/06/22] standards/53613standards FreeBSD doesn't define EPROTO o [2003/06/22] docs/53621 trhodes devname(3)'s man page needs an example o [2003/06/23] ports/53636 ports-bugs Suggestion for rc.d style startup scripts o [2003/06/23] ports/53657 tobez devel/p5-Parse-RecDescent - tutorial/* is o [2003/06/24] www/53676 simon [patch] Don't make people contact doc@ fo o [2003/06/24] bin/53682 standards [PATCH] add fuser(1) utitity o [2003/06/25] docs/53732 doc quota output and man page do not document f [2003/06/25] ports/53740 ports-bugs New port: science/fluka - Linux Monte Car o [2003/06/26] docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ o [2003/06/26] java/53790 znerd Let tomcat41ctl start java -server f [2003/06/26] ports/53791 kde Can't pass CPPFLAGS to configure when WIT o [2003/06/27] ports/53817 nik textproc/docbook should include textproc/ o [2003/06/28] bin/53870 C++ undeclares standard math functions li o [2003/06/28] ports/53878 des [Port Update]:: games/flightgear & devel/ o [2003/06/29] bin/53899 mktime gives wrong result in Central time o [2003/06/29] conf/53901 dd Suggest MFC of include keyword to config( o [2003/06/29] www/53906 www [patch] adds content to alpha plattform p o [2003/06/30] i386/53930 i386 showmount doesnot show nfs exportlist on o [2003/06/30] ports/53939 dwcjr [PATCH] Fix library dependencies in samba p [2003/06/30] misc/53944 [PATCH] ARMSCII-8 (Armenian) LOCALE and C o [2003/07/02] ports/54002 lioux QMTPC patch for qmail-1.03 o [2003/07/02] docs/54009 trhodes Clarify the location of the splash image o [2003/07/02] bin/54026 [patch] Add support for non-standard port o [2003/07/02] ports/54041 ade libtool13 (as installed) doesn't recogniz o [2003/07/02] ports/54048 rse wml fails f [2003/07/03] ports/54059 ports-bugs New port: www/zope-psycopg, database adap o [2003/07/03] ports/54060 sergei new port devel/aegis o [2003/07/03] kern/54078 sound Sound Plays ~10% Slow o [2003/07/04] kern/54094 [patch] make signedness of kg_nice and ki o [2003/07/04] bin/54098 ken [patch] make camcontrol(8) work if plain o [2003/07/05] bin/54123 [patch] fix assignments of getopt() retur o [2003/07/05] bin/54141 wrong behavour of cu(1) a [2003/07/06] ports/54161 trevor security/mcrypt unbrake and update to 2.6 o [2003/07/06] kern/54163 Non-existing Jails in jls?! o [2003/07/07] conf/54170 error from weekly periodic script 330.cat o [2003/07/07] ports/54174 portmgr clean spaces behind variables out of port s [2003/07/07] bin/54185 rwatson UFS2 filesystem ACL flag not enforced a [2003/07/07] docs/54197 mheinen Mentioning of devfs is missing in the Ger o [2003/07/08] ports/54212 lioux Goggles-0.5.5 compile fails - dvdnav.o un o [2003/07/08] misc/54220 [PATCH] /usr/src/Makefile has wrong instr o [2003/07/08] misc/54229 Complete "See also" section for getipnode p [2003/07/08] docs/54235 ceri Error in ioctl(2)'s man page: Ioccon.h co o [2003/07/09] ports/54250 ade [PATCH] for devel/automake17 o [2003/07/09] ports/54262 tobez port lang/perl5 doesn't deinstall /usr/bi o [2003/07/09] bin/54274 ru udp-proxy support is not implemented in l o [2003/07/09] bin/54276 pread/pwrite patches for libc db function o [2003/07/09] ports/54298 ports-bugs New port irc/kvirc, KVIrc 3.0.0 p [2003/07/10] conf/54334 Tip in freebsd-tips datfile for fortune i o [2003/07/10] ports/54352 ports-bugs Conversion rc.d scripts to RC_NG o [2003/07/11] bin/54365 [PATCH] add -u option to install(1) for S o [2003/07/11] docs/54380 doc [PATCH] document additional perl variable o [2003/07/11] kern/54383 net NFS root configurations without dynamic p o [2003/07/11] docs/54391 doc Document that glob(3) respects LC_COLLATE a [2003/07/11] ports/54406 portmgr [patch] add two more cases to ports/Tools o [2003/07/13] kern/54439 Protecting sysctls variables by given mut o [2003/07/13] i386/54451 i386 [patch] i386_{get|set}_ldt manual page is o [2003/07/13] docs/54461 kensmith Possible addition to Handbook o [2003/07/14] misc/54477 Thousands separator for Italian locale o [2003/07/16] ports/54557 sergei [REPOCOPY] security/gnutls-devel: develop o [2003/07/16] ports/54563 maho new ports: sysutils/sge, Sun Grid Engine o [2003/07/17] www/54570 www [patch] add 2 new press articles o [2003/07/17] www/54572 www [patch] unbreak b0rked www/en/ports/index o [2003/07/17] bin/54594 Apply regexps to the entire variable -- a o [2003/07/17] i386/54595 i386 emu10k1 sound driver locks system o [2003/07/18] kern/54604 Made 'ps -e' procfs-independent [PATCH]. o [2003/07/18] docs/54610 blackend [patch] adds route(8) examples to routing o [2003/07/18] kern/54625 sumikawa [PATCH] IPv6 stealth forwarding o [2003/07/19] ports/54631 knu [PATCH] sysutils/portupgrade: fix pkgtool o [2003/07/20] kern/54654 njl Need SCSI CAM quirk for Rovershot digital o [2003/07/20] bin/54672 [PATCH] fix gcc 3.3 compiler warning for o [2003/07/20] docs/54678 doc [patch] add PACKAGESITE to packages chapt o [2003/07/20] www/54679 phantom [patch] add some .at companies to gallery o [2003/07/20] bin/54683 sh, redundant history o [2003/07/21] kern/54730 [patch] root can not set arbitrary proces o [2003/07/22] docs/54752 doc bus_dma explained in ISA section: should o [2003/07/22] docs/54769 doc [patch] updates to FAQ o [2003/07/23] bin/54784 find -ls wastes space o [2003/07/23] kern/54786 njl Kernel quirk for FreeDik USB Mini Data Dr o [2003/07/23] docs/54789 doc [PATCH] brush up the "New Users" article o [2003/07/24] docs/54806 doc [patch] adds fvwm2 to x11-wm o [2003/07/24] standards/54809standards pcvt deficits f [2003/07/24] ports/54814 ports-bugs New port: hungarian/hunspell version 0.9. o [2003/07/24] standards/54833standards more pcvt deficits o [2003/07/25] kern/54836 njl Casio QV Digital Camera problems o [2003/07/25] standards/54839standards pcvt deficits o [2003/07/25] ports/54866 lioux libgnugetopt incompatibility breaks mjpeg o [2003/07/25] ports/54875 andreas hpijs loops on fatal error s [2003/07/25] bin/54878 incorrect divisor in /usr/bin/jot -r o [2003/07/25] docs/54879 doc man 1 jot, -r description o [2003/07/26] kern/54884 mckusick FreeBSD -stable and -current free space h o [2003/07/26] bin/54891 ru libalias/natd and exporting connection-in o [2003/07/27] bin/54897 [PATCH] -y flag for mount_mfs o [2003/07/27] conf/54910 mtm [PATCH] Add rc.conf option to disable vir o [2003/07/27] i386/54963 i386 Left over/outdated comment in NOTES o [2003/07/28] kern/54981 njl Add support for Lexar 256MB USB drive o [2003/07/28] docs/54995 doc Error in accept(2) man page o [2003/07/28] docs/54999 doc Documentation Project Primer doesn't conf o [2003/07/29] misc/55015 Security check output enhacement (truncat o [2003/07/29] misc/55031 getgrent() failure with large groups o [2003/07/29] java/55032 java SVr4 emulation interferes with install o [2003/07/29] kern/55034 njl ACPI Power Off don't work o [2003/07/30] ports/55061 nork Update port: math/plplot f [2003/07/30] kern/55094 ticso Intel USB 2.0 unrecognized (partial patch o [2003/07/30] kern/55097 njl BUSLink BusDrive Support (umass) o [2003/07/31] ports/55102 trevor [Update port] unbreak security/mcrypt and o [2003/07/31] standards/55112standards glob.h, glob_t's gl_pathc should be "size o [2003/08/01] ports/55143 ports-bugs [NEW PORT] math/koctave3: KDEGUI for octa p [2003/08/01] misc/55146 ache [PATCH] The termcap entry for screen is o p [2003/08/01] kern/55159 jhb [patch] puc support for SUN1889 PCI seria o [2003/08/01] kern/55163 [patch] hide kld system details from jail o [2003/08/02] ports/55180 perky [PATCH] for removing configure warning of o [2003/08/03] docs/55207 doc [patch] update acroread section & add loc o [2003/08/03] bin/55215 [PATCH] add wu-ftpd style xferlog format o [2003/08/04] ports/55237 anders sysutils/msyslog uses wrong loging unix s o [2003/08/04] ports/55258 pav misc sweeping o [2003/08/06] docs/55306 doc [patch] adds filemanagers to desktop appl f [2003/08/06] ports/55324 pav /usr/ports/net/ntop port will not install p [2003/08/07] misc/55341 Adding ko_KR.CP949 locale o [2003/08/08] ports/55371 ports-bugs xfig dumps core (unaligned access), if US o [2003/08/08] misc/55387 users LD_LIBRARY_PATH can interfere with o [2003/08/08] gnu/55394 GDB on FreeBSD 4.8: Deprecated bfd_read. o [2003/08/08] kern/55395 njl ICH sampling rate changes after resume fr o [2003/08/08] ports/55401 ache mod_auth_digest for ports/www/apache13 o [2003/08/08] bin/55408 Fix for VESA_800x600 mode for vidcontrol( f [2003/08/10] ports/55446 linimon Update net/xprobe o [2003/08/11] docs/55458 doc [patch] add useful content & hints to por o [2003/08/11] conf/55470 [PATCH] new pccard.conf entry (I-O DATA W o [2003/08/11] i386/55473 i386 Mouse broken on some AWARD BIOS with ACPI o [2003/08/11] docs/55482 doc DUMP has access to block devices in a JAI o [2003/08/12] ports/55494 portmgr [patch] ports/Mk/bsd.sdl.mk a [2003/08/12] ports/55515 portmgr extract perl stuff from bsd.port.mk into o [2003/08/13] i386/55523 i386 AGP support for i82845G o [2003/08/13] docs/55538 doc [patch] add screenshots to desktop chapte o [2003/08/13] bin/55539 [patch] Parse fstab(5) with spaces in pat o [2003/08/13] bin/55546 cdcontrol play tr m:s.f interface is part o [2003/08/14] ports/55590 perky [PATCH] Compile failure graphics/graphviz f [2003/08/14] ports/55592 pav New port: irc/accutron2000, irc bot f [2003/08/14] ports/55596 sergei New port: security/vmap, security scanner p [2003/08/16] docs/55641 roam [PATCH] catch up tl(4) with hardware note p [2003/08/16] docs/55643 roam [PATCH] catch up aue(4) with hardware not p [2003/08/16] docs/55645 roam [PATCH] catch up kue(4) with hardware not o [2003/08/16] docs/55653 doc chflags.1 - note that not all tools chfla o [2003/08/17] kern/55657 njl PMI usb drive SCSI DA quirk o [2003/08/17] ports/55669 nobutaka emacs20 and emacs21 override each other a f [2003/08/17] kern/55678 sos IDE-CDROM not recognised a [2003/08/17] ports/55683 portmgr Add USE_PTHREAD_HACK to bsd.port.mk for s s [2003/08/18] ports/55699 x11 [PATCH] making x11-servers/XFree86-4-Serv o [2003/08/20] ports/55760 tobez [patch] make Perl versions coexist o [2003/08/20] bin/55788 grog Growfs does not work on vinum concat volu o [2003/08/20] misc/55794 Convenience improvement suggestion: clear o [2003/08/20] kern/55802 Make kernel.GENERIC suitable for diskless o [2003/08/21] kern/55835 Linux IPC emulation missing SETALL syscal o [2003/08/21] kern/55838 Dual characters from keyboard in X on Tos o [2003/08/21] ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to u o [2003/08/22] ports/55866 ade port devel/libtool13 installs .la files o [2003/08/22] docs/55883 kensmith advanced-networking/chapter.sgml p [2003/08/23] misc/55895 [patch]fix short weekday names in zh_CN.* o [2003/08/23] ports/55896 ports-bugs [NEW PORT] www/mozplugger f [2003/08/23] ports/55904 dinoex gnustep art backend does not work o [2003/08/23] conf/55916 Change to /etc/rc.network & /etc/defaults o [2003/08/24] kern/55917 tun# devices cannot be created in 4.8-STA p [2003/08/24] docs/55925 roam mt, mtio, tcopy man pages refers to *rsa o [2003/08/24] misc/55936 send-pr does not set mail envelope from o [2003/08/25] bin/55980 [patch] rmuser does not remove IPC mechan o [2003/08/25] bin/55981 luigi [patch] redundant argument count check in o [2003/08/25] kern/55984 ipfw [patch] time based firewalling support fo s [2003/08/26] ports/56006 des [PATCH] buffer overflows in databases/gna o [2003/08/26] i386/56012 i386 [patch] MAKEDEV does not allow creation o p [2003/08/26] docs/56021 roam Documentation incorrect for mac in ipfw2 o [2003/08/26] bin/56025 [PATCH] moused when detect USB mouse p [2003/08/27] docs/56044 roam missing information in manpage for accept f [2003/08/28] ports/56083 billf Update ethereal to version 0.9.14 and all o [2003/08/28] ports/56091 ports-bugs hp220 driver for print/ghostscript-gnu do o [2003/08/28] kern/56095 Apacer Pen Drive fails to work o [2003/08/28] kern/56097 Empty vendor string overrides known o [2003/08/29] conf/56144 [PATCH] /etc/rc.d/ipmon, /etc/rc.d/ipfilt o [2003/08/29] kern/56165 if_baudrate is not correct for rl, xl, dc o [2003/08/30] misc/56206 src/sys/sys/cdefs.h uses PreProcessor var f [2003/08/30] ports/56219 pav new port: sysutils/mapchan, mapchan utili o [2003/08/31] kern/56245 Distorted and choppy video with bktr-driv o [2003/08/31] bin/56249 lukemftpd has two bugs (motd, munged utmp o [2003/08/31] kern/56250 ums doesn't work with MCT based PS/2 conv o [2003/08/31] i386/56257 njl I'm unable to create floppies unless I di o [2003/09/01] ports/56266 ports-bugs [new port] net/jffnms - Very advanced net o [2003/09/01] ports/56275 x11 XFree86-4-Server: xf86config refers to no o [2003/09/02] ports/56301 knu portupgrade: -O ineffective o [2003/09/02] ports/56302 wollman [PATCH] www/mod_auth_kerb: fix build on - f [2003/09/02] ports/56307 ports-bugs [PATCH] esound, sdl support for games/fre o [2003/09/02] ports/56308 ports-bugs NEW port math/itl (with LAM support) o [2003/09/02] bin/56328 luigi ipfw -c list not working o [2003/09/03] kern/56384 njl ACPI problems on Thinkpad T20 o [2003/09/03] ports/56386 kde kdebase overwrites kdmrc when installing a [2003/09/03] docs/56388 dougb Add/change #include lines for libisc man a [2003/09/03] ports/56389 portmgr [PATCH] port sysutils/pkg_install: fix `m o [2003/09/03] ports/56392 portmgr bento reports "share/nls/en_US.US-ASCII" o [2003/09/03] bin/56398 new option for daemon(8) -- pidfile [patc o [2003/09/04] docs/56408 doc [PATCH] add around app-default o [2003/09/04] ports/56411 trevor [patch]unbreak ports/security/mcrypt o [2003/09/04] kern/56441 andre bpf_tap() used incorrectly in bpf o [2003/09/04] bin/56447 Extend mt command for AIT-2 tape drives o [2003/09/04] kern/56451 /compat/linux/proc/cpuinfo gives wrong CP o [2003/09/04] docs/56452 doc [patch]Add EXTRACT_DEPENDS&PATCH_DEPENDS o [2003/09/04] standards/56476standards cd9660 unicode support simple hack o [2003/09/05] bin/56480 mixer(8) -s does not list recording sourc f [2003/09/05] ports/56481 linimon [patch] fix plist and fetch problems for o [2003/09/05] conf/56506 A wireless network card is missing in 4.8 o [2003/09/05] ports/56512 dburr x11amp bus error o [2003/09/06] kern/56513 panic in ugen w/ moused -p /dev/ugen0 o [2003/09/06] ports/56518 trevor [patch][non-maintainer] update checksums o [2003/09/06] ports/56536 ports-bugs New Port: www/CGI-Application-ValidateRM o [2003/09/06] bin/56549 [patch] rtld.c - give more info on missin o [2003/09/07] gnu/56554 re add Cc: maintainer feature to send-pr o [2003/09/07] bin/56558 [PATCH] locate(1) cannot be safely used w o [2003/09/07] ports/56562 anders [update] www/mod_sqlinclude: update to 1. o [2003/09/08] docs/56584 hmp Updates for VOP_GETPAGES(9) and VOP_PUTPA o [2003/09/08] ports/56597 ports-bugs bad startup perfomance of mpg123 with pcm o [2003/09/08] bin/56606 df cannot handle 2TB NFS volumes o [2003/09/08] kern/56617 Hang on boot w/neomagic audio on Dell Lat p [2003/09/09] bin/56622 jmg Wrong debug message in usbd o [2003/09/09] ports/56641 portmgr [PATCH] bsd.port.mk: support for SHA1 and o [2003/09/09] bin/56646 [patch] getgrouplist()/setgroups() argume o [2003/09/09] bin/56648 [PATCH] enable rcorder(8) to use a direct o [2003/09/09] bin/56649 [patch] More spurious semicolon removal o [2003/09/09] bin/56653 [patch] Removal of non-standard void * ar o [2003/09/09] ports/56658 ports-bugs Convert security/amavisd startup scripts o [2003/09/09] kern/56664 bad file# in MTIO status buffer after MTE o [2003/09/10] ports/56677 nbm qmailanalog port does not install to corr p [2003/09/11] bin/56696 johan atacontrol core dump (sscanf on unintiali o [2003/09/11] ports/56699 seanc net/openreg needs to move to dns category o [2003/09/11] misc/56715 darrenr ipmon starts too early and exits immediat o [2003/09/11] misc/56720 Resolver UNICODE support o [2003/09/11] kern/56726 [PATCH] patches for if_bfe (Broadcom BCM4 o [2003/09/12] conf/56736 [PATCH] rcNG: enable packages to particip f [2003/09/13] ports/56756 edwin bogus patch on emulators/twin a [2003/09/14] ports/56859 portmgr [patch] minor fixes for ports/Tools/portb f [2003/09/14] ports/56864 linimon sdl12 fails in joystick/bsd o [2003/09/14] docs/56883 doc Inadequately-documented charter for freeb o [2003/09/15] docs/56903 doc [patch] articles/fonts: add application t o [2003/09/15] ports/56909 roger cannot compile openh323 o [2003/09/15] docs/56911 hmp Document for VOP_OPEN missing the last pa o [2003/09/16] bin/56914 ftpd ignores default umask settings o [2003/09/16] docs/56915 doc [patch] articles/fonts: update links s [2003/09/16] ports/56928 ports-bugs jce-aba port should install to $JAVA_HOME o [2003/09/16] docs/56932 doc [patch] articles/releng-packages: add "no o [2003/09/16] conf/56934 rc.firewall rules for natd expect an inte o [2003/09/16] docs/56936 doc [patch] articles/java-tomcat: add applica o [2003/09/17] conf/56940 pccard.conf entry for PCET10-CL causes sy o [2003/09/17] ports/56951 roam [PATCH] add ignoreip2 patch o [2003/09/17] conf/56952 re Floppy install error o [2003/09/17] kern/56954 [PATCH] fix typo in comment of sys/cam/sc o [2003/09/17] conf/56956 xterm-ic from termcap is not included in o [2003/09/17] bin/56961 [PATCH] pkg_install: match package versio f [2003/09/18] ports/56977 mat net/p5-Net-Server assumes wrong setuid se o [2003/09/18] ports/56980 portmgr unprivileged user, extracting of tarballs o [2003/09/18] docs/56981 doc man terminfo(5) from libncurses does not o [2003/09/18] bin/56989 [PATCH] pkg_install: -v doesn't work on p o [2003/09/19] misc/56999 FreeCom USB CD/RW problem on FreeBSD 5.1 o [2003/09/19] ports/57010 kris Update port: x11/wdm to 1.26 o [2003/09/19] ports/57016 portmgr sysutils/pkg_install: left over files in o [2003/09/19] bin/57018 [PATCH] convert growfs to use libufs(3) o [2003/09/19] bin/57024 a new option for xargs(1) -- only treat \ o [2003/09/19] bin/57026 [PATCH] Therer is no way to know the labe o [2003/09/19] bin/57029 [PATCH] pkg_install: make more robust aga o [2003/09/19] ports/57031 dougb upslog started with incorrect command lin o [2003/09/20] bin/57045 trpt(8) option -t was disabled on -curren o [2003/09/20] kern/57046 njl Add usb quirk for Sigmatel USB Flash MP3 o [2003/09/21] bin/57054 let test(1) compare the mtime of a file t o [2003/09/21] conf/57058 NO_MAILWRAPPER in make.conf not completel o [2003/09/21] kern/57065 jmg core dumps with NODUMP flag a [2003/09/21] ports/57067 portmgr add imake and pthread detection to Tools/ o [2003/09/22] bin/57088 [PATCH] for a possible fd leak in libcam. o [2003/09/22] bin/57089 "w" does not honor the -n option o [2003/09/23] ports/57122 obrien ncftp3: !command doesn't work p [2003/09/23] kern/57123 SMBFS incorrect LFN & 8.3 bad character h o [2003/09/23] i386/57125 i386 Comment to IPSEC_FILTERGIF in LINT is now o [2003/09/23] i386/57131 i386 Device ID for Intel 82801DBM IDE Controll o [2003/09/23] i386/57133 i386 PCI device ID for Intel 82801DB/BAM/CAM a o [2003/09/23] ports/57143 ports-bugs modules in flash shell broken o [2003/09/24] ports/57151 tobez Port lang/perl5.8: use.perl fails to modi o [2003/09/24] docs/57153 doc S_IRWXU missing in fstat(2) man page? o [2003/09/24] ports/57162 ports-bugs The latest stable release of DansGuardian o [2003/09/24] ports/57167 clement [REPOCOPY WAITING] news/inn-current: Deve o [2003/09/24] ports/57183 linimon Removal port: chinese/abiword o [2003/09/24] java/57192 java linux-ibm-java1.4 freeze f [2003/09/24] ports/57198 ports-bugs multimedia/xmms fix to work with CDDA und o [2003/09/25] kern/57230 [patch] psm(4) incorrectly identifies an o [2003/09/26] amd64/57250 obrien Broken PTRACE_GETFPREGS and PTRACE_SETFPR f [2003/09/26] ports/57259 portmgr Building a port as root using an NFS-moun s [2003/09/27] ports/57289 linimon teamspeak-server port is broken in 3 ways o [2003/09/27] standards/57295standards [patch] make does not include cmd line va o [2003/09/27] docs/57298 blackend Using compact flash cards o [2003/09/28] ports/57319 nork archivers/lha has a newer version p [2003/09/29] ports/57349 knu [PATCH] port sysutils/portupgrade: typos o [2003/09/29] kern/57350 kernel panics when using old monocrome pr o [2003/09/29] ports/57384 perl [PATCH] mail/p5-Mail-SpamAssassin 2.60 s [2003/09/29] ports/57386 clement [REPOCOPY WAITING] www/apache21: Add Apac o [2003/09/29] docs/57388 doc INSTALL.TXT enhancement: mention ok promp o [2003/09/30] ports/57394 smace net/libnet-devel: install doc and example f [2003/09/30] bin/57407 bms [patch] Better NTP support for dhclient(8 o [2003/09/30] kern/57422 MT_TAG usage are not reported o [2003/09/30] kern/57428 a couple of new sysctl to toggle which IP o [2003/10/01] misc/57464 Boot process: loader(8) seems to confuse o [2003/10/01] kern/57468 Quirk for Quantum LPS540S o [2003/10/01] kern/57469 Quirk for Conner CP3500 s [2003/10/01] ports/57475 linimon devel/sdl12: upgrading to 1.2.6 + some fi f [2003/10/01] ports/57485 pav ghostscript-gnu-7.07_3 portupgrade - unab o [2003/10/01] kern/57487 sound Sound stops working on my Thinkpad 560X a o [2003/10/01] ports/57490 okazaki bus error troff running. need to version o [2003/10/02] ports/57498 portmgr HEIMDAL_HOME should be defined in src or o [2003/10/02] ports/57502 eik ports that define USE_* too late o [2003/10/02] ports/57503 clement New Port Submission www/mod_auth_mysql41_ o [2003/10/02] conf/57517 add parameter for /etc/periodic/daily/210 o [2003/10/02] ports/57521 ports-bugs New Port - databases/py-sybase o [2003/10/02] kern/57522 [PATCH] New PID allocater algorithm from o [2003/10/03] ports/57525 ports-bugs New port: databases/katalog, data CDs cat p [2003/10/03] docs/57541 trhodes Some suggestions for the Basics chapter o o [2003/10/03] i386/57546 Adding VIA C3 capability printout in i386 o [2003/10/04] docs/57569 doc error on gensetdefs(8) man page o [2003/10/05] bin/57630 lptcontrol gives "device busy" if device o [2003/10/06] bin/57641 [patch] missing option in mdmfs (mount_mf o [2003/10/06] ports/57661 clement [new port] www/mod_log_data: Module for A a [2003/10/07] kern/57696 NFS client readdir terminates prematurely o [2003/10/07] bin/57715 tcopy enhancement o [2003/10/07] kern/57721 sound Dell built in SB Live not detected (patch o [2003/10/07] ports/57726 trevor upgrade cvslines to 1.6.8 o [2003/10/08] misc/57748 [patch] rc.network doesn't allow for -a i o [2003/10/08] ports/57759 krion New port: net/ayttm, a very function im c f [2003/10/08] ports/57775 linimon [non-maintainer] mark graphics/quat-gui a f [2003/10/08] ports/57779 lev Update devel/subversion to 0.31, with per o [2003/10/08] i386/57783 i386 UINT32_MAX is missing from FreeBSD 4.X o [2003/10/09] ports/57789 ports-bugs New port of converters/asr10, access to E o [2003/10/09] bin/57791 dig option -x incorrectly produces ip6.ar a [2003/10/10] sparc64/57856sparc64 sparc64: IDE Raid controller no detect di o [2003/10/10] ports/57860 ports-bugs New port: science/ovt: Orbit Visualizatio o [2003/10/10] ports/57861 taoka [PATCH] ports/japanese/*fpw*: `make deins o [2003/10/11] ports/57865 clement New ports: www/mod_watch4 f [2003/10/11] ports/57880 erwin [patch]update irc/ircd-hybrid to 6.4.1 o [2003/10/12] standards/57911standards fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) o [2003/10/12] ports/57924 mat Update port: www/p5-Apache-Peek 0.9501 -> o [2003/10/12] docs/57926 doc amd.conf.5 poorly format as it has both m o [2003/10/13] ports/57943 ports-bugs isc-dhcp3 port broken with lots of interf o [2003/10/13] ports/57952 tobez Update port: p5-XML-DT from 0.20 to 0.26 o [2003/10/13] docs/57974 doc man page apropos for select macros (FD_SE o [2003/10/13] kern/57976 simple kernel DDB enhancement o [2003/10/13] docs/57978 doc Type miss of GPIB in Hardware Notes o [2003/10/13] ports/57983 mat Update port: net/p5-Net-Netmask from 1.90 o [2003/10/14] ports/57987 tobez Update port: lang/p5-Scalar-List-Utils fr o [2003/10/14] ports/57988 mat Update port: www/p5-HTML-FromText to 2.05 o [2003/10/14] ports/57992 osa [PATCH] Utilize %%DOCSDIR%% macro o [2003/10/14] misc/58008 sysinstall postfix installation problem o [2003/10/14] ports/58011 portmgr Formalization of WITH_/WITHOUT_ Makefile o [2003/10/14] bin/58012 Multihomed tftpd enhancement o [2003/10/14] ports/58015 ports-bugs [NEW PORT] www/apache-forrest: A tool for o [2003/10/14] conf/58016 [PATCH] Can't load speaker.ko kernel modu o [2003/10/14] ports/58025 ports-bugs [New port] x11/xterm: xterm built with 88 o [2003/10/14] www/58029 www [patch] news/press: correct capitalizatio f [2003/10/14] ports/58053 ports-bugs New port: chinese/ftpd o [2003/10/15] ports/58071 tobez p5-Log-Dispatch portversion upgrade patch o [2003/10/16] ports/58108 ports-bugs Update port: textproc/xhtml-1.1 (use xmlc o [2003/10/16] docs/58111 doc Handbook 12.4.3 Rebuilding ATA RAID1 Arra o [2003/10/16] www/58122 www [patch] publish: update "BSD mit Methode" o [2003/10/16] bin/58133 mdodd back port libmap.conf feature for 4-stabl o [2003/10/16] misc/58134 ntpdate documented as obsolete, and shoul o [2003/10/16] ports/58146 anders [non maintainer update] www/mod_auth_exte o [2003/10/16] ports/58149 portmgr [patch] Mk/bsd.port.mk: Make CONFLICTS co o [2003/10/17] ports/58158 nork replace install directory for ump.so o [2003/10/17] ports/58184 linimon port textproc/latte installs latte.el in o [2003/10/17] ports/58185 skv update ports/textproc/p5-XML-Sablotron to f [2003/10/18] ports/58196 roam update ports/net/p5-Net-IPv6Addr to 0.2 o [2003/10/18] docs/58202 kensmith handbook doesn't mention kldload'ness of o [2003/10/18] bin/58206 [Patch] 460.status-mail-rejects incompati a [2003/10/18] kern/58214 andre [patch] Align smallbits properly in poll( o [2003/10/19] ports/58249 clement [new port] www/mod_ntlm: Implements NTLM o [2003/10/19] ports/58250 clement [new port] www/mod_ntlm2: Implements NTLM o [2003/10/19] ports/58251 clement [new port] www/mod_vdbh: Allows mass virt o [2003/10/19] ports/58252 clement [new port] www/mod_mya: Allows basic auth o [2003/10/19] ports/58255 clement [new port] www/mod_clamav: Scans content o [2003/10/19] ports/58256 clement [new port] www/mod_cfg_ldap: Allows you t o [2003/10/20] misc/58272 [patch] rc.d/diskless detection, dhcp reb o [2003/10/20] ports/58289 dirk www/httrack port fails with Floating poin o [2003/10/20] bin/58293 vi replace with CR (ASCII 13) doesn't wor o [2003/10/21] ports/58360 orion port mbone/rat has an update available o [2003/10/22] ports/58365 pat port security/gtk-knocker update o [2003/10/22] misc/58373 mckusick ufs inconsistency between 4.9-RC and 5.1 o [2003/10/22] ports/58385 cy [PATCH] misc/screen: Utilize EXAMPLESDIR o [2003/10/22] ports/58386 ume [PATCH] sysutils/gkrellm2: Utilize EXAMPL o [2003/10/22] ports/58387 mharo [PATCH] security/sudo: Utilize EXAMPLESDI o [2003/10/22] bin/58390 bsdlabel fails to display an error messag o [2003/10/22] ports/58399 ports-bugs New port: java/phpeclipse - PHP Eclipse a o [2003/10/22] ports/58400 ports-bugs New port: java/phpeclipse_sql - PHPEclips o [2003/10/22] ports/58401 ports-bugs New port: java/phpeclipse_tidy - PHPEclip o [2003/10/22] ports/58402 ports-bugs New port: java/phpeclipse_phphelp - PHP a o [2003/10/22] ports/58407 tobez upgrade p5-Template-Toolkit to 2.10 o [2003/10/23] ports/58415 mharo [PATCH] Support for Mysql4client and Open o [2003/10/23] ports/58440 cjh korean/ami: fix libintl dependency => avo o [2003/10/23] ports/58459 cjh ports/net/ztelnet build problem f [2003/10/23] ports/58460 linimon Update port: print/foomatic-filters to 20 o [2003/10/24] bin/58483 [PATCH] allows type special or node relat f [2003/10/24] kern/58491 Kernel panic when loading amr driver o [2003/10/24] kern/58497 sysctl knob to return current process' ji o [2003/10/24] ports/58501 roam Maintainer update: cc65 port updated to 2 o [2003/10/25] ports/58512 mat Update port: www/phpnuke o [2003/10/25] kern/58515 [patch] Header fixes for !__GNUC__ compil f [2003/10/25] ports/58516 ports-bugs Update port: devel/asmutils f [2003/10/25] misc/58529 Patch for RDWR bpf in pcap. o [2003/10/25] ports/58545 joerg devel/avr-gcc: fix libintl and libiconv d o [2003/10/26] misc/58557 Summer/Winter-time change causes daily cr f [2003/10/26] ports/58566 leeym New port: net/scr-ipfm a [2003/10/26] ports/58578 roam new port: misc/kbedic, Bulgarian to Engli o [2003/10/26] gnu/58583 kan gcc.1, cpp.1 and gcov.1 manpages are outd o [2003/10/26] docs/58586 doc [patch] ng_one2many interface status requ o [2003/10/27] conf/58595 Default NTP configuration o [2003/10/28] docs/58615 doc update for Vinum chapter of Handbook: des o [2003/10/28] kern/58634 phk [PATCH] memory leak in geom_fox o [2003/10/28] ports/58635 anders [non maintainer update] www/mod_auth_pam: o [2003/10/28] ports/58644 jedgar Update emulators/sim to 3.0-2 o [2003/10/28] ports/58653 trevor [Ports Update]:: audio/fest* 1.4.1 -> 1.4 o [2003/10/28] gnu/58656 gdb not ready for prime time o [2003/10/28] ports/58661 ports-bugs New port: www/mozex, external programs in o [2003/10/28] ports/58662 ports-bugs New port: www/preferential, GUI interface o [2003/10/28] ports/58675 jedgar non-maintainer-update: mail/grepmail to 5 o [2003/10/29] standards/58676standards grantpt(3) alters storage used by ptsname o [2003/10/29] conf/58680 dougb [PATCH] RCNG: shouldn't ldconfig be start o [2003/10/29] bin/58696 /sbin/natd feature request & possible pat o [2003/10/29] ports/58705 tobez update net/p5-NetAddr-IP from 3.14 to 3.1 o [2003/10/29] ports/58709 ports-bugs New port: net/ksambaplugin, a KDE 3.x Con o [2003/10/30] docs/58710 doc killpg(2) contains an error regarding sen o [2003/10/30] ports/58716 jesper ports/net/p5-Net-SSH-Perl fetch hangs p [2003/10/30] bin/58730 ceri [patch] "fortune -l ..." loops forever. f [2003/10/31] ports/58774 mharo Non-Maintainer-Update: ftp/proftpd update o [2003/10/31] docs/58783 doc crontab man could mention MAILTO supports o [2003/10/31] i386/58784 i386 ATA DMA fails and vx0 creates panic f [2003/10/31] ports/58785 ports-bugs qcad build breaks o [2003/10/31] ports/58786 portmgr unbreak WANT_AUTOCONF_VER o [2003/11/01] kern/58803 kern.argmax isn't changeable even at boot p [2003/11/01] bin/58813 tjr Incorrect behavour of sed(1) o [2003/11/01] ports/58828 mita patch to fix build of japanese/vflib o [2003/11/02] ports/58839 ports-bugs [REPOCOPY WAITING] add gtk2 ability to ga o [2003/11/02] ports/58847 ports-bugs New port: french/mozilla-flp - Mozilla Fr o [2003/11/03] bin/58893 OPIE implementation bug o [2003/11/03] ports/58894 jmz Fix of support for textproc/no-ispell, No o [2003/11/03] misc/58900 schweikh termcap is broken in 4.9-RELEASE o [2003/11/04] ports/58926 obrien latest port of editors/vim has problem dr o [2003/11/04] bin/58939 dumb little hack for /etc/rc.firewall{,6} o [2003/11/04] ports/58948 sergei new port: sysutils/apan, a tool for integ o [2003/11/04] ports/58952 cy [PATCH] Unbreake security/pam_krb5 with h o [2003/11/05] bin/58970 truss coredumps for the no significant re o [2003/11/06] misc/58992 fenner libpcap has BIOCGDLTLIST stuff but no DLT o [2003/11/06] ports/59024 mph math/xgfe: update to 2.1 and improve on 5 o [2003/11/07] bin/59036 Possible patch for PR's bin/56166 and bin o [2003/11/07] docs/59044 doc doc.docbook.mk does not properly handle a o [2003/11/07] ports/59047 ports-bugs [NEW PORT] multimedia/freevo: Freevo is a o [2003/11/08] ports/59058 portmgr [PATCH] bsd.port.mk: cleanup o [2003/11/08] ports/59059 ports-bugs New port: x11/silo: a simple X11 launcher o [2003/11/08] ports/59061 ports-bugs Error in NeverwinterNights install o [2003/11/08] kern/59067 [patch] PS/2 mouse unstable o [2003/11/08] ports/59070 portmgr [PATCH] bsd.port.mk: unexpected features o [2003/11/08] ports/59071 pat [PATCH] games/q3server-ut: FIX BROKEN. ma p [2003/11/09] bin/59078 re [patch] Fix greek support in sysinstall a o [2003/11/09] ports/59091 adrian [PATCH] www/squid: major overhaul and upd o [2003/11/10] bin/59144 [patch] Allow a trailing / for mount -u t o [2003/11/10] i386/59147 i386 USB active extension cable not recognized o [2003/11/10] ports/59153 cy [PATCH] x11-wm/fvwm2 cannot correctly dis o [2003/11/10] ports/59154 cy [PATCH] x11-wm/fvwm2-devel cannot correct o [2003/11/10] ports/59157 ports-bugs [New Port]:: www/moregroupware o [2003/11/10] ports/59162 portmgr bsd.port.mk: add-plist-info executes too o [2003/11/10] ports/59165 cy fvwm2 port glitches/bugs o [2003/11/11] ports/59168 ports-bugs ports/lang/gauche does not install info f o [2003/11/11] kern/59169 joe ulpt is missing read operation o [2003/11/11] ports/59171 dirk [non-maintainer] delete port databases/xm o [2003/11/11] ports/59180 krion [NEW PORT] net/arpwatch-devel o [2003/11/11] ports/59194 portmgr proposal of two new port CATEGORIES: loca o [2003/11/11] kern/59205 grog vinum doesn't check whether strip size is o [2003/11/12] bin/59207 uustat list limit of 201 jobs o [2003/11/12] kern/59208 matk sound patch to reduce pops and crackles a o [2003/11/12] ports/59218 demon x11-wm/afterstep-stable fails to be insta o [2003/11/12] bin/59220 obrien systat(1) device select (:only) broken o [2003/11/12] ports/59221 ports-bugs New port: news/fidogate-ds. A fresh branc o [2003/11/12] ports/59226 portmgr [patch] two small additions to ports/Tool s [2003/11/12] ports/59239 ports-bugs new port audio/tse3, a midi library o [2003/11/12] ports/59242 portmgr bsd.port.mk: MYSQL_VER - beautify with ". s [2003/11/12] ports/59243 ports-bugs new port audio/anthem, a KDE midi sequenc f [2003/11/13] ports/59254 eik ports that write something after bsd.port o [2003/11/13] ports/59272 portmgr [patch] add errortype column to bento "ne o [2003/11/14] kern/59289 [PATH] ioctl METEORGBRIG in bktr_core.c f o [2003/11/14] ports/59292 demon dvips one line paper sizes broken? o [2003/11/14] ports/59293 ports-bugs New port: deskutils/journal is a tool for o [2003/11/14] ports/59297 x11 RADEON 7500 Warning message o [2003/11/15] docs/59305 doc [PATCH] The basics chapter of the Handboo o [2003/11/15] www/59307 www [patch] xml/xsl'ify & update publications o [2003/11/15] ports/59313 mbr [patch] Update to graphics/jpgtn port o [2003/11/15] ports/59315 portmgr bsd.port.mk: fix RANDOMIZE_MASTER_SITES=y o [2003/11/16] bin/59320 Using ls -h (on FBSD 5.x) causes unaligne o [2003/11/16] misc/59347 Add Bacula to /etc/services o [2003/11/16] ports/59357 linimon [repocopy request] several ports to move o [2003/11/16] ports/59362 portmgr [patch] add new Makevar DEPRECATED to bsd o [2003/11/17] ports/59370 edwin sysutils/xw: Schedule for removal o [2003/11/17] ports/59371 ports-bugs new port: net/smb4k, KDE SMB network brow o [2003/11/17] ports/59392 portmgr bsd.port.mk: add filesize field in distin o [2003/11/18] ports/59416 clement New port: www/mod_limitipconn2 o [2003/11/18] bin/59423 [PATCH] ps: show 'sid' keyword in '-j' o [2003/11/19] kern/59455 lock order reversal o [2003/11/19] docs/59477 doc Outdated Info Documents at http://docs.fr o [2003/11/19] ports/59479 ports-bugs Build depends not checked properly for se o [2003/11/19] ports/59485 sergei [NEW PORT] net/nrpe2: Nagios Remote Plugi o [2003/11/20] bin/59530 strange bug in /bin/sh o [2003/11/20] ports/59537 mat update port: net/p5-Net-CIDR o [2003/11/21] bin/59551 Problem with GDB on latest -CURRENT o [2003/11/21] ports/59553 demon teTeX installs texdoctk without depending o [2003/11/21] www/59555 www News item for addition o [2003/11/21] bin/59564 Added an option (-S) to from command to a o [2003/11/21] docs/59565 doc [PATCH] FAQ doesn't cover definition of g s [2003/11/21] bin/59569 nullfs gives fts_read problem with du(1) o [2003/11/21] ports/59571 znerd improvements of www/jakarta-tomcat4[1] Ma o [2003/11/22] ports/59599 dwcjr Update add conflicts to the samba-* ports o [2003/11/22] i386/59600 i386 [PATCH] Improved us.emacs.kbd mapping o [2003/11/23] kern/59624 [PATCH] HightPoint HPT371 support for Fre o [2003/11/23] ports/59626 portmgr [PATCH] bsd.port.subdir.mk: more informat o [2003/11/23] ports/59630 ports-bugs lang/php4: PHP configuration options add o [2003/11/23] ports/59632 ports-bugs lang/php5: PHP configuration options add s [2003/11/24] ports/59637 linimon [patch] emulators/generator: Force use of o [2003/11/24] ports/59643 lioux add more function to qmail mailer.conf o [2003/11/24] docs/59649 doc Outdated 4.4BSD Documents at http://docs. o [2003/11/24] ports/59651 portmgr Remove last remaining COMMENT files from a [2003/11/24] ports/59657 trevor emulators/linux_base-8 cpio for install w o [2003/11/25] docs/59669 doc gethostbyname2() man-page states that onl p [2003/11/25] bin/59674 ceri typo in contrib/tcp_wrappers/socket.c o [2003/11/25] ports/59675 mat Maintainer Update: net/p5-IO-INET6 to ver o [2003/11/25] ports/59682 knu portupgrade uses ports when you want it t o [2003/11/25] ports/59692 jmz The download location for igerman98 in is a [2003/11/25] ports/59695 ade [PATCH] devel/gmake: add two patches to a o [2003/11/25] ports/59696 portmgr bsd.port.mk: change `ls' with `pkg_info - o [2003/11/26] kern/59698 Rework of ukbd HID to AT code translation o [2003/11/26] ports/59706 nobutaka [non-maintainer] fix multimedia/libxine t o [2003/11/26] bin/59708 [patch] add sSMTP support for Mail select a [2003/11/26] ports/59720 clement www/apache2: ab fails with Undefined symb o [2003/11/27] ports/59724 ports-bugs [NEW PORT] net/aMule (supersedes ports/59 o [2003/11/27] bin/59730 isdnd crashes with signal 11 if cannot cr o [2003/11/27] ports/59731 mikeh irc/lirc daemon "could not assign address o [2003/11/27] kern/59732 acpi causes boot to hang o [2003/11/27] docs/59735 kensmith Adding a reference to Icelandic Rsync o [2003/11/27] docs/59736 kensmith Updating size of archives o [2003/11/27] kern/59739 rmdir(2) and mkdir(2) both return EISDIR o [2003/11/27] ports/59744 knu Patch: Convert 8 Ruby Gnome2 ports to use o [2003/11/28] bin/59772 ftpd(8)/FreeBSD 5: support for tcp_wrappe o [2003/11/28] bin/59773 ftpd(8)/FreeBSD 5: IP address of the clie o [2003/11/28] bin/59774 ftpd(8)/FreeBSD 5: syslog facility may be o [2003/11/28] bin/59775 ftpd(8)/FreeBSD 5: incorrect reply for "u o [2003/11/28] bin/59776 ftpd(8)/FreeBSD 5: PAM "session" code is o [2003/11/29] ports/59788 knu sysutils/portupgrade ignores line breaks o [2003/11/29] standards/59797standards Implement C99's round[f]() math fucntions p [2003/11/29] misc/59799 New locale: zh_HK.Big5HKSCS o [2003/11/29] ports/59802 linimon [patch] make devel/py-ncurses depend on d o [2003/11/29] i386/59806 i386 [patch] Suspend/resume breaks em0 o [2003/11/29] ports/59811 portmgr speed up GNU configure (bsd.port.mk patch o [2003/11/29] ports/59813 sergei New port: mail/mixmaster anonymous remail o [2003/11/29] kern/59814 FreeBSD mknod refuses to create pipes and o [2003/11/30] ports/59817 ports-bugs [NEW PORT] irc/srvx: Srvx IRC services o [2003/11/30] ports/59832 seanc Upgrade of jabber-aim to version 20030314 o [2003/11/30] docs/59835 doc ipfw(8) man page does not warn about acce o [2003/11/30] ports/59837 erwin Update graphics/p5-Image-Info to version o [2003/11/30] ports/59842 mikeh Update port: comms/lirc o [2003/11/30] i386/59854 i386 System panics when AGP device is loaded o [2003/11/30] ports/59855 billf [PATCH] ethereal-0.9.16 uses adns o [2003/11/30] ports/59859 scrappy [PATCH] converters/p5-Convert-ASN1: updat o [2003/11/30] ports/59861 seanc New port: net/mu-conference, jabber-mu-co f [2003/11/30] ports/59862 ports-bugs update sysutils/LPRng to 3.8.23, also fix f [2003/11/30] ports/59863 ports-bugs [non maintainer] Unbreak graphics/evolvot o [2003/12/01] ports/59867 znerd change port revision of java/linux-ibm-jd o [2003/12/01] ports/59872 obrien bash2 should permit the user to install d o [2003/12/01] bin/59883 divert cannot be renamed in FreeBSD m4 o [2003/12/02] docs/59900 kuriyama out of date README.txt and .message files o [2003/12/02] ports/59902 clement Update port: emulators/quasi88 (0.4.5 => o [2003/12/02] kern/59903 "pci_find_device" returns [only/at] the f o [2003/12/02] ports/59906 dirk port dns/ddclient 'ddclient.sh stop' comm o [2003/12/02] ports/59909 portmgr patch to obviate many PLIST files f [2003/12/03] kern/59917 sos ata reset update in ATAng o [2003/12/03] bin/59922 Toshiba Portege hangs with Eicon DIVA T/A o [2003/12/03] ports/59933 mita update misc/magicpoint to 1.10a o [2003/12/03] kern/59934 acpi-jp Cardbus won't work if ACPI is enabled on o [2003/12/03] docs/59937 ceri spelling mistake in mount_nullfs(8) manpa o [2003/12/04] ports/59955 cy net/ntp improvements o [2003/12/04] ports/59956 sergei ports/devel/porttools depends on ports/de o [2003/12/04] ports/59961 seanc Jabber deamon won't run if hostname is mi s [2003/12/04] ports/59964 linimon Update and take maintainer-ship of all cl o [2003/12/04] ports/59968 nbm Update port: databases/phppgadmin New ver o [2003/12/05] www/59972 www [patch] press: add article o [2003/12/06] docs/59991 doc diff manpage lacks a return value section o [2003/12/06] ports/60000 pat Update port: x11-clocks/wmclockmon o [2003/12/06] ports/60002 pat Update port: sysutils/wmmemload o [2003/12/07] bin/60026 [patch] Fix typo in malloc() size computa o [2003/12/08] ports/60042 ports-bugs New port: Text manipulation and autodetec o [2003/12/08] docs/60044 doc [patch] Add signal numbers to signal(3) o [2003/12/08] docs/60049 doc [patch] suggestion for advanced-network/c o [2003/12/08] docs/60058 doc [patch] handbook: correct wrong reference f [2003/12/09] ports/60063 pav Port Update: netmask-2.3.7 to netmask-2.4 o [2003/12/09] bin/60079 realpath(3) accepts zero size symbolic li o [2003/12/09] docs/60088 doc [PATCH] add additional MLINKS for rman(9) o [2003/12/09] kern/60089 scottl UDF filesystem appends garbage to files o [2003/12/09] conf/60106 /etc/hosts mentions AfriNIC which does no o [2003/12/10] kern/60131 Page fault on disconnect of USB device o [2003/12/11] ports/60134 anders www/mod_auth_pam marked broken but does c o [2003/12/11] ports/60173 knu [non-maintainer update] japanese/ruby-mec o [2003/12/12] kern/60174 debugging a kernel module in load/attach o [2003/12/12] kern/60183 No WCCPv2 support in gre o [2003/12/12] ports/60185 ports-bugs [New Port] www/w3-emacs21 WWW browser bas o [2003/12/12] docs/60186 doc [patch] Addition of new section to mail c o [2003/12/13] kern/60218 [PATCH] HPT302 ATA133 Support for 4.9-STA o [2003/12/14] ports/60233 dirk [patch] cdrtools: priority conflicts with a [2003/12/14] misc/60243 Problem in calling kpathsea library from o [2003/12/15] kern/60248 Problem with USB printer HP LaserJet 1300 o [2003/12/15] ports/60254 dwcjr net/samba-devel port with libiconv troubl o [2003/12/15] ports/60262 eik fetchmail-6.2.5 with APOP: "cannot get a o [2003/12/15] ports/60273 krion Update port: net/everybuddy to ayttm 0.4. o [2003/12/15] bin/60287 nectar [patch] NSS does not handle NSS_STATUS_TR o [2003/12/16] kern/60293 FreeBSD arp poison patch o [2003/12/16] ports/60299 ports-bugs New port: print/kaspaliste (KDE/Postgres/ o [2003/12/16] kern/60307 wrong product id in pccarddevs for SpeedS o [2003/12/16] misc/60309 sys/socket.h: CMSG_NXTHDR requires defini o [2003/12/16] i386/60319 i386 read error 34/0 during installation, SYST o [2003/12/17] conf/60329 There is no 'device ataraid' in NOTES o [2003/12/17] ports/60330 nbm [Update] misc/achievo to 1.0.1 o [2003/12/17] ports/60331 knu [PLIST-FIX] ruby-bdb-0.4.9 doesn't contai o [2003/12/17] misc/60350 qa In sysinstall's Choose Distributions scre o [2003/12/17] kern/60351 Code stream problem o [2003/12/17] misc/60352 [PATCH] buildworld fails in sysinstall if o [2003/12/18] ports/60358 jdp bad info in cvsup man page o [2003/12/18] ports/60361 dwcjr [PATCH] Samba 2.2.8a (2.2.8)- broken supp o [2003/12/18] kern/60367 Erroneous "(core dumped)" in process deat o [2003/12/18] bin/60368 jmg performance problem /usr/sbin/ppp o [2003/12/18] docs/60370 doc [patch] Clarification of textproc/docproj o [2003/12/18] ports/60372 erwin Maintainer update of irc/ircd-hybrid to 0 o [2003/12/18] www/60375 ceri [FILE] Cleans sendpr-code db by removing o [2003/12/18] kern/60377 luigi [patch] to make "ipfw tee" behave as inte o [2003/12/18] ports/60381 kde [patch] x11/kdebase3: fix various process o [2003/12/18] ports/60384 andreas apsfilter port fails with -DBATCH -DWITHO o [2003/12/18] ports/60390 nectar [patch] Make nss_ldap respect PREFIX for o [2003/12/18] ports/60391 dougb [SW-BUG] Fix hpijs to work with CUPS o [2003/12/19] www/60396 www [patch] press: new article o [2003/12/19] docs/60401 doc small typo/error in tcpdump(1) a [2003/12/19] ports/60402 nork New port: japanese/ebview-gtk2 o [2003/12/19] ports/60408 ports-bugs New Port: Pnet 0.6.0 o [2003/12/19] ports/60409 ports-bugs new port: pnetlib 0.6.0.1 o [2003/12/19] ports/60413 ports-bugs New Port: pnetC 0.6.0 o [2003/12/19] ports/60414 dwcjr fix port: net/samba f [2003/12/20] ports/60416 mat Port upgrade: sysutils/p5-LJ-TextMessage o [2003/12/20] ports/60420 max [patch] lang/swi-prolog: Fix packaging on o [2003/12/20] ports/60428 seanc ports memcached update f [2003/12/20] ports/60431 ports-bugs [new port]: devel/oskit p [2003/12/20] bin/60433 maxim ipfw: permit use of flush w/ preprocessor o [2003/12/20] ports/60444 clement make apache2 with suexec more configurabl o [2003/12/20] kern/60448 PF_KEY protocol does not have a correspon o [2003/12/21] ports/60453 ports-bugs New Port: lang/ml-pnet o [2003/12/21] ports/60456 pat ports/astro/wmjupiter has a checksum erro o [2003/12/21] kern/60458 [patch] bktr(4) compilation fails if BKTR o [2003/12/21] ports/60472 ports-bugs [New Port] devel/doxymacs Doxymacs is Dox f [2003/12/21] ports/60473 ports-bugs New port databases/db3-tcl o [2003/12/21] kern/60474 anholt Temporary fix for DRM support for Radeon o [2003/12/21] ports/60476 ports-bugs devel/boost: Links to examples in online o [2003/12/21] ports/60487 kde error in building port devel/qt-designer f [2003/12/21] ports/60488 dinoex netpbm does not build on Alpha f [2003/12/22] ports/60491 pav [update] graphics/gqview-devel -> 1.3.6 f [2003/12/22] ports/60496 clement GNU Radius 1.2 has been released f [2003/12/22] ports/60497 ports-bugs [NEW PORT] net/p5-File-RsyncP: Perl Rsync o [2003/12/22] i386/60500 i386 system hangs on defect pccard o [2003/12/22] ports/60502 kde [patch] x11/kdebase3: fix memory statisti o [2003/12/22] misc/60503 small error in modules installation o [2003/12/22] bin/60510 [PATCH] change to less for compressed fil o [2003/12/22] www/60517 www [patch] xml'ify frontpage navigation bar o [2003/12/22] kern/60521 sane-backends-1.0.13_1 coredumps in use w o [2003/12/23] bin/60524 mtree tumbles on files begining with hash o [2003/12/23] misc/60529 resolver(5) man page is badly out of date o [2003/12/23] ports/60534 knu portupgrade not working if started by cro o [2003/12/24] ports/60541 ports-bugs support Berkeley DB 4.1 in ports/lang/php o [2003/12/24] docs/60544 doc getenv(3) manpage doesn't state the retur o [2003/12/24] kern/60550 silby [PATCH] hitting process limits produces s f [2003/12/24] misc/60551 No sound for ATI TV-Wonder (stereo not VE o [2003/12/24] misc/60552 5+1 sound for SB Live! f [2003/12/25] conf/60556 gshapiro [patch] Default freebsd.submit.mc file sh o [2003/12/25] ports/60557 ports-bugs print/cups port lacks of building tunable o [2003/12/25] ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify f [2003/12/25] ports/60573 pav [update] graphics/gqview-devel -> 1.3.7 o [2003/12/25] misc/60574 The nonsensical word "irregardless" shows p [2003/12/25] docs/60575 trhodes miibus(4) manual page slight cosmetic gli s [2003/12/26] ports/60584 ports-bugs [REPOCOPY WAITING] sysutils/userneu-devel f [2003/12/26] ports/60585 ports-bugs ZMailer 2.99.56 is available, can be comp p [2003/12/26] standards/60597standards FreeBSD's /usr/include lacks of cpio.h o [2003/12/26] misc/60599 No sound for ATI TV Wonder (stereo) o [2003/12/26] ports/60604 ports-bugs [update] p5-Locale-Maketext-Simple o [2003/12/27] bin/60632 UI bug in partition label screen in sysin o [2003/12/27] i386/60633 i386 It would seem that if you're running a sy o [2003/12/27] bin/60636 Enhancement to adduser script. o [2003/12/27] i386/60637 i386 /etc/resolv.conf not created after fresh o [2003/12/27] ports/60638 skv [PATCH] databases/p5-DBD-mysql: make full o [2003/12/27] bin/60642 dhclient has mysterious option -D o [2003/12/27] i386/60643 i386 5.2 RC2 disk1 ISO will not boot on an Asu o [2003/12/27] ports/60645 ports-bugs New port: japanese/multiskkserv o [2003/12/28] i386/60662 i386 5.2 Anonymous FTP server out dated. o [2003/12/28] bin/60670 sos Atacontrol doesn't know about WDMA1 p [2003/12/28] conf/60676 gshapiro 150.clean-hoststat doesn't obey mailwrapp o [2003/12/28] misc/60677 No reaction of volume controy key on IBM o [2003/12/29] www/60691 www [patch] press.xml: fix whitespaces o [2003/12/29] misc/60697 [patch] pseudo-tty hack versus telnet rac o [2003/12/29] kern/60699 DVD Multidrive udma mode autosensed wrong o [2003/12/29] i386/60702 i386 can't boot 5.2-RC2 iso's to install f [2003/12/29] ports/60708 ports-bugs [non maintainer] Update editors/kile to 1 o [2003/12/29] ports/60710 sheldonh update p5-DBD-Sybase to 1.02 f [2003/12/29] ports/60711 pav upgrade ports/security/gpgme to 0.3.16 o [2003/12/29] ports/60715 ports-bugs [NEW PORT] deskutils/moregroupware: A web o [2003/12/29] ports/60716 clement New port: sysutils/dtc, Doman Technologie o [2003/12/29] kern/60719 ipfw: Headerless fragments generate cryp f [2003/12/30] ports/60728 ports-bugs [Change-request] ports: mail/amavis-perl o [2003/12/30] gnu/60732 [PATCH] unbreak kgdb backtraces through t o [2003/12/30] ports/60736 tobez perl's use.perl message isn't clear about o [2003/12/30] kern/60737 Sound card Turtle Beach Santa Cruz not wo o [2003/12/30] kern/60738 System crash with USB sound card and X f [2003/12/30] ports/60740 pav Patches for ftp/prozilla (no committer re o [2003/12/30] docs/60743 doc Bug in hypertext version of random (4) ma f [2003/12/31] ports/60759 krion [NEW PORT] ftp/cmdftp: Command line shell o [2003/12/31] ports/60764 linimon Port upgrade: sysutils/k3b to 0.10.3 o [2003/12/31] ports/60768 se [update] mini_httpd 1.18 -> 1.19 o [2003/12/31] www/60769 www typo in porting-submitting.html o [2003/12/31] ports/60771 trevor Update port: x11-wm/openbox f [2003/12/31] ports/60776 pav [update] devel/p5-SDL -> 1.20.3 o [2004/01/01] ports/60786 kde [patch] x11/kdebase3: fix statistics of n o [2004/01/01] i386/60787 i386 ACPI puts Dell PowerEdge 400SC machine in o [2004/01/01] conf/60793 re treat cvsup-no-gui the same way as pearl o [2004/01/01] www/60796 www [patch] support.sgml: sort usergroups by o [2004/01/01] docs/60797 doc [patch] contributors: add harald wille o [2004/01/01] ports/60800 sergei [non maintainer update] misc/salias: upda o [2004/01/01] ports/60801 sergei [non maintainer update] misc/stan: update o [2004/01/01] ports/60802 sergei New port: Yadda - Yet Another Damn Delive o [2004/01/01] bin/60806 inetd hangs on non-existent config files o [2004/01/01] bin/60809 ftpd should not allow anonymous users to o [2004/01/01] ports/60810 ports-bugs New port: textproc/srilm o [2004/01/01] misc/60815 5.2-rc2 install screen becomes garbled af o [2004/01/02] i386/60817 i386 FBSD-5.1/5.2-RC1 "fdc0: cmd 3 failed at o o [2004/01/02] ports/60823 grog Update port: x11-servers/x2x 1.30-beta f [2004/01/02] ports/60825 pav [PATCH] ports/emulators/fmsx is outdated, o [2004/01/02] misc/60834 ftpd send_data()+oldway: anonymous transf f [2004/01/02] ports/60845 pav [PATCH] www/plone: depend on Formulator p o [2004/01/02] ports/60847 krion New port: games/BillardGL An OpenGL billi o [2004/01/03] ports/60858 ports-bugs New port: textproc/p5-Lingua-PT-Stemmer o [2004/01/03] ports/60859 ports-bugs New port: textproc/p5-Lingua-Stem-It o [2004/01/03] ports/60860 ports-bugs New port: textproc/Lingua-Stem-Snowball-D o [2004/01/03] ports/60861 ports-bugs New port: textproc/Lingua-Stem-Snowball-N o [2004/01/03] ports/60862 ports-bugs New port: textproc/Lingua-Stem-Snowball-S o [2004/01/03] ports/60863 ports-bugs New port: textproc/p5-Text-German o [2004/01/03] ports/60864 ports-bugs Update port: textproc/p5-Lingua-Stem o [2004/01/03] ports/60866 ports-bugs Remove port www/gnujsp? o [2004/01/03] ports/60873 sergei new port: sysutils/rsnapshot o [2004/01/03] kern/60874 auto-assign devfs ruleset numbers o [2004/01/03] i386/60876 i386 ..... o [2004/01/03] ports/60877 sergei Update lang/onyx port to 5.0.0 o [2004/01/03] ports/60879 ports-bugs Reintroduce port: sysutils/arson f [2004/01/03] ports/60881 sergei net/psi: update to 0.9.1 o [2004/01/03] ports/60882 portmgr bsd.port.mk: resort configure target and o [2004/01/03] ports/60883 gerald gcc preprocessor Segmentation Fault when o [2004/01/03] ports/60884 nork [PATCH] Fix liveMedia build with GCC-3.3. o [2004/01/04] docs/60890 doc sync ps.1 with print.c and sys/proc.h o [2004/01/04] kern/60892 Added -p option to kldxref to allow creat o [2004/01/04] misc/60900 During shutdown sync fails: "giving up on o [2004/01/04] bin/60901 XDR stdio is broken on 64 bit platforms. f [2004/01/04] ports/60908 clement mail/postfixadmin - use INSTALL_DATA inst f [2004/01/04] ports/60910 ports-bugs [new port] mail/graphdefang o [2004/01/04] ports/60912 ports-bugs [MAINTAINER-UPDATE] Update lang/fpc to 1. o [2004/01/04] ports/60915 ports-bugs Update ports: japanese/yc.el o [2004/01/05] kern/60917 sos implementation of ata sleeping o [2004/01/05] i386/60919 i386 No login possible (sporadic) o [2004/01/05] ports/60922 ports-bugs New port: www/opera-devel, preview versio f [2004/01/05] ports/60941 pav [PATCH] emulators/gxmame: Change default o [2004/01/05] ports/60943 pav MAINTAINER: new ports: databases/db42, db o [2004/01/05] bin/60944 "file" identifies text files as "characte o [2004/01/05] ports/60945 ports-bugs New port: bsdbktr_tvtune - a console bktr o [2004/01/05] ports/60947 marcus update port: devel/portlint o [2004/01/05] ports/60948 ports-bugs [NEW PORT] devel/ace: A slave port to dev 2372 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 5 21:10:22 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8814716A4CE for ; Mon, 5 Jan 2004 21:10:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 251D443D49 for ; Mon, 5 Jan 2004 21:10:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i065AJFR076680 for ; Mon, 5 Jan 2004 21:10:19 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i065AJSS076679; Mon, 5 Jan 2004 21:10:19 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 5 Jan 2004 21:10:19 -0800 (PST) Resent-Message-Id: <200401060510.i065AJSS076679@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris BeHanna Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E894916A4CE for ; Mon, 5 Jan 2004 21:02:13 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36A5643D4C for ; Mon, 5 Jan 2004 21:02:11 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i0652AdL079089 for ; Mon, 5 Jan 2004 21:02:10 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i0652A16079088; Mon, 5 Jan 2004 21:02:10 -0800 (PST) (envelope-from nobody) Message-Id: <200401060502.i0652A16079088@www.freebsd.org> Date: Mon, 5 Jan 2004 21:02:10 -0800 (PST) From: Chris BeHanna To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: kern/60964: [PATCH] Add SIIG Quartet Serial 4S PCI IDs for puc device X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2004 05:10:22 -0000 >Number: 60964 >Category: kern >Synopsis: [PATCH] Add SIIG Quartet Serial 4S PCI IDs for puc device >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jan 05 21:10:19 PST 2004 >Closed-Date: >Last-Modified: >Originator: Chris BeHanna >Release: 4.9-STABLE >Organization: Western Pennsylvania Pizza Disposal Unit >Environment: FreeBSD topperwein.pennasoft.com 4.9-STABLE FreeBSD 4.9-STABLE #2: Mon Jan 5 23:20:05 EST 2004 root@topperwein.pennasoft.com:/raid0/stable/usr/obj/raid5/4stable/src/sys/TOPPERWEIN i386 >Description: The SIIG Quartet 4-port PCI serial board isn't recognized. >How-To-Repeat: Install a SIIG Quartet 4-port PCI serial board, model number IO1876, and boot. >Fix: This patch applies against both 4.9-STABLE as of Nov 30, 2003 07:13:44 UTC and against 5.3-CURRENT as of Jan 6, 2003 07:13:52 UTC (these are my cvsup completion times). --- src/sys/dev/puc/pucdata.c.orig Mon Jan 5 23:08:51 2004 +++ src/sys/dev/puc/pucdata.c Mon Jan 5 23:54:14 2004 @@ -630,6 +630,18 @@ { { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8}, { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8}, + }, + }, + + /* SIIG Quartet Serial 550 PCI 16C554 (20x family): 4S, model IO1876 */ + { "SIIG Quartet Serial 550 4S PCI 16C554 (20x family)", + { 0x131f, 0x2050, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ }, + { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ }, + { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ }, + { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ }, }, }, >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 01:37:16 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A266716A4CE; Tue, 6 Jan 2004 01:37:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8D3E43D2F; Tue, 6 Jan 2004 01:37:15 -0800 (PST) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i069bFFR002332; Tue, 6 Jan 2004 01:37:15 -0800 (PST) (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i069bFgT002328; Tue, 6 Jan 2004 01:37:15 -0800 (PST) (envelope-from linimon) Date: Tue, 6 Jan 2004 01:37:15 -0800 (PST) From: Mark Linimon Message-Id: <200401060937.i069bFgT002328@freefall.freebsd.org> To: amd64.gnu@FreeBSD.org, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/60968: simple error in libstdc++ causes 'buildworld to fail' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2004 09:37:16 -0000 Synopsis: simple error in libstdc++ causes 'buildworld to fail' Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jan 6 01:36:32 PST 2004 Responsible-Changed-Why: Rescue this from the 'pending' state. http://www.freebsd.org/cgi/query-pr.cgi?pr=60968 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 07:40:28 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E89B16A4CE for ; Tue, 6 Jan 2004 07:40:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 257F443D5A for ; Tue, 6 Jan 2004 07:40:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i06FeEFR094491 for ; Tue, 6 Jan 2004 07:40:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i06FeD1V094490; Tue, 6 Jan 2004 07:40:13 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 6 Jan 2004 07:40:13 -0800 (PST) Resent-Message-Id: <200401061540.i06FeD1V094490@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Issei Numata Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 835E016A4CE for ; Tue, 6 Jan 2004 07:33:32 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 161B343D4C for ; Tue, 6 Jan 2004 07:33:30 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i06FXTdL088149 for ; Tue, 6 Jan 2004 07:33:29 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i06FXT8m088148; Tue, 6 Jan 2004 07:33:29 -0800 (PST) (envelope-from nobody) Message-Id: <200401061533.i06FXT8m088148@www.freebsd.org> Date: Tue, 6 Jan 2004 07:33:29 -0800 (PST) From: Issei Numata To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: kern/60981: cannot obtain error(sense key, APC,..) while using ATAPICMD with /dev/ata X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2004 15:40:28 -0000 >Number: 60981 >Category: kern >Synopsis: cannot obtain error(sense key, APC,..) while using ATAPICMD with /dev/ata >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jan 06 07:40:13 PST 2004 >Closed-Date: >Last-Modified: >Originator: Issei Numata >Release: 4.9-STABLE >Organization: Heart Solutions JP >Environment: FreeBSD puchiko.private 4.9-STABLE FreeBSD 4.9-STABLE #0: Tue Jan 6 15:18:32 JST 2004 issei@puchiko.private:/usr/src/sys/compile/GENERIC i386 >Description: I found Stable BSD cannot obtain error information while using ATAPICMD with /dev/ata >How-To-Repeat: Here is a simple program. please run it under the CD tray opened. This conditon cause error, but contents of sense_data is not a valid data. This is because bopy's first argument is incorrect(see patch) #include #include #include #include #include #include #include int main() { struct ata_cmd cmd; int fd; int ret; int i; char buf[256] = {0}; fd = open("/dev/ata", O_RDWR); fprintf(stderr, "fd=%d\n", fd); memset(&cmd, 0, sizeof(cmd)); memset(buf, 0, sizeof(buf)); cmd.channel = 0; cmd.device = 1; cmd.cmd = ATAPICMD; cmd.u.atapi.ccb[0] = 0x25; cmd.u.atapi.flags = ATAPI_CMD_READ; cmd.u.atapi.data = buf; cmd.u.atapi.count = 256; cmd.u.atapi.timeout = 30; ret = ioctl(fd, IOCATA, &cmd); fprintf(stderr, "ioctl=%d\n", ret); fprintf(stderr, "errno=%d\n", errno); fprintf(stderr, "error=%d\n", cmd.u.atapi.error); for(i=0 ; i<32 ; ++i){ fprintf(stderr, "%02x ", buf[i] & 0xff); } fprintf(stderr, "\n\n"); for(i=0 ; i<17 ; ++i){ fprintf(stderr, "%02x ", cmd.u.atapi.sense_data[i] & 0xff); } fprintf(stderr, "\n"); sleep(1); close(fd); return 0; } >Fix: diff -c /sys/dev/ata/ata-all.c.orig /sys/dev/ata/ata-all.c *** /sys/dev/ata/ata-all.c.orig Tue Jan 6 15:33:49 2004 --- /sys/dev/ata/ata-all.c Tue Jan 6 15:33:54 2004 *************** *** 447,453 **** iocmd->u.atapi.timeout, NULL, NULL); if (error) { iocmd->u.atapi.error = error; ! bcopy(&atadev->result, iocmd->u.atapi.sense_data, sizeof(struct atapi_reqsense)); error = 0; } --- 447,453 ---- iocmd->u.atapi.timeout, NULL, NULL); if (error) { iocmd->u.atapi.error = error; ! bcopy(atadev->result, iocmd->u.atapi.sense_data, sizeof(struct atapi_reqsense)); error = 0; } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 09:20:19 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AA2B16A4CE for ; Tue, 6 Jan 2004 09:20:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1674243D45 for ; Tue, 6 Jan 2004 09:20:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i06HKEFR005134 for ; Tue, 6 Jan 2004 09:20:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i06HKERY005133; Tue, 6 Jan 2004 09:20:14 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 6 Jan 2004 09:20:14 -0800 (PST) Resent-Message-Id: <200401061720.i06HKERY005133@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris BeHanna Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 510A316A4CE for ; Tue, 6 Jan 2004 09:14:01 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F66F43D46 for ; Tue, 6 Jan 2004 09:14:00 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i06HDxdL009721 for ; Tue, 6 Jan 2004 09:13:59 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i06HDxAq009720; Tue, 6 Jan 2004 09:13:59 -0800 (PST) (envelope-from nobody) Message-Id: <200401061713.i06HDxAq009720@www.freebsd.org> Date: Tue, 6 Jan 2004 09:13:59 -0800 (PST) From: Chris BeHanna To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: kern/60982: [PATCH] ID for VIA 686A Power Management Unit (for 4-STABLE) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2004 17:20:19 -0000 >Number: 60982 >Category: kern >Synopsis: [PATCH] ID for VIA 686A Power Management Unit (for 4-STABLE) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jan 06 09:20:14 PST 2004 >Closed-Date: >Last-Modified: >Originator: Chris BeHanna >Release: 4.9-STABLE >Organization: Western Pennsylvania Pizza Disposal Unit >Environment: FreeBSD topperwein.pennasoft.com 4.9-STABLE FreeBSD 4.9-STABLE #5: Tue Jan 6 01:37:56 EST 2004 root@topperwein.pennasoft.com:/raid0/stable/usr/obj/raid5/4stable/src/sys/TOPPERWEIN i386 >Description: The VIA 686A PM unit is not recognized during boot probing on 4.9. >How-To-Repeat: Load FreeBSD 4.9 onto a Gigabyte GA-7DX motherboard and boot it. >Fix: This patch is for 4-STABLE as of Nov 30 2003 07:12:44 UTC (cvsup time, not build time). -CURRENT already recognizes this device in viapm.c. --- src/sys/pci/pcisupport.c.orig Tue Jan 6 01:25:34 2004 +++ src/sys/pci/pcisupport.c Tue Jan 6 01:27:28 2004 @@ -1274,8 +1274,9 @@ return ("VIA 82C598MVP (Apollo MVP3) host bridge"); case 0x30401106: case 0x30501106: - case 0x30571106: return NULL; + case 0x30571106: + return ("VIA 82C686A Power Management Unit"); case 0x30581106: return ("VIA 82C686 AC97 Audio"); case 0x30681106: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 14:03:29 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B949416A4CE; Tue, 6 Jan 2004 14:03:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FC7A43D55; Tue, 6 Jan 2004 14:03:29 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from freefall.freebsd.org (rwatson@localhost [127.0.0.1]) i06M3SFR031855; Tue, 6 Jan 2004 14:03:28 -0800 (PST) (envelope-from rwatson@freefall.freebsd.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i06M3S6j031851; Tue, 6 Jan 2004 14:03:28 -0800 (PST) (envelope-from rwatson) Date: Tue, 6 Jan 2004 14:03:28 -0800 (PST) From: Robert Watson Message-Id: <200401062203.i06M3S6j031851@freefall.freebsd.org> To: rwatson@FreeBSD.org, freebsd-bugs@FreeBSD.org, mbr@FreeBSD.org Subject: Re: bin/60901: XDR stdio is broken on 64 bit platforms. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2004 22:03:29 -0000 Synopsis: XDR stdio is broken on 64 bit platforms. Responsible-Changed-From-To: freebsd-bugs->mbr Responsible-Changed-By: rwatson Responsible-Changed-When: Tue Jan 6 14:01:06 PST 2004 Responsible-Changed-Why: Martin likes RPC. Or at least, he has been a victim of RPC in the past. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=60901 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 18:00:27 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6923716A4CE for ; Tue, 6 Jan 2004 18:00:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C180743D3F for ; Tue, 6 Jan 2004 18:00:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i0720KFR054419 for ; Tue, 6 Jan 2004 18:00:20 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i0720KQh054416; Tue, 6 Jan 2004 18:00:20 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 6 Jan 2004 18:00:20 -0800 (PST) Resent-Message-Id: <200401070200.i0720KQh054416@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Simson L. Garfinkel" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD30116A4CE for ; Tue, 6 Jan 2004 17:58:02 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CFD543D39 for ; Tue, 6 Jan 2004 17:58:01 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i071w1dL032402 for ; Tue, 6 Jan 2004 17:58:01 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i071w1t3032401; Tue, 6 Jan 2004 17:58:01 -0800 (PST) (envelope-from nobody) Message-Id: <200401070158.i071w1t3032401@www.freebsd.org> Date: Tue, 6 Jan 2004 17:58:01 -0800 (PST) From: "Simson L. Garfinkel" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 02:00:27 -0000 >Number: 60997 >Category: kern >Synopsis: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jan 06 18:00:20 PST 2004 >Closed-Date: >Last-Modified: >Originator: Simson L. Garfinkel >Release: 5.2-RC2 >Organization: MIT >Environment: FreeBSD r2.nitroba.com 5.2-RC FreeBSD 5.2-RC #2: Wed Dec 24 18:23:52 EST 2003 simsong@r2.nitroba.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: building etherreal from ports doesn't work because there are conflicting definitions for vm_pindex_t: /sh ../../libtool --mode=compile cc -I../../include -I../../include -I. -I../.. -I. -I./../.. -I./../../snmplib -I./.. -I.. -DINET6 -O -pipe -mcpu=pentiumpro -Dfreebsd5 -c -o host/hr_system.lo host/hr_system.c mkdir host/.libs cc -I../../include -I../../include -I. -I../.. -I. -I./../.. -I./../../snmplib -I./.. -I.. -DINET6 -O -pipe -mcpu=pentiumpro -Dfreebsd5 -c host/hr_system.c -fPIC -DPIC -o host/.libs/hr_system.lo cc -I../../include -I../../include -I. -I../.. -I. -I./../.. -I./../../snmplib -I./.. -I.. -DINET6 -O -pipe -mcpu=pentiumpro -Dfreebsd5 -c host/hr_system.c -o host/hr_system.o >/dev/null 2>&1 mv -f host/.libs/hr_system.lo host/hr_system.lo /bin/sh ../../libtool --mode=compile cc -I../../include -I../../include -I. -I../.. -I. -I./../.. -I./../../snmplib -I./.. -I.. -DINET6 -O -pipe -mcpu=pentiumpro -Dfreebsd5 -c -o host/hr_storage.lo host/hr_storage.c rm -f host/.libs/hr_storage.lo cc -I../../include -I../../include -I. -I../.. -I. -I./../.. -I./../../snmplib -I./.. -I.. -DINET6 -O -pipe -mcpu=pentiumpro -Dfreebsd5 -c host/hr_storage.c -fPIC -DPIC -o host/.libs/hr_storage.lo In file included from host/hr_storage.c:36: /usr/include/machine/types.h:57: error: conflicting types for `vm_pindex_t' /usr/include/sys/types.h:253: error: previous declaration of `vm_pindex_t' *** Error code 1 Stop in /raid4/ports/net/net-snmp/work/net-snmp-5.1/agent/mibgroup. *** Error code 1 Stop in /raid4/ports/net/net-snmp/work/net-snmp-5.1/agent. *** Error code 1 Stop in /raid4/ports/net/net-snmp/work/net-snmp-5.1. *** Error code 1 Stop in /raid4/ports/net/net-snmp. *** Error code 1 Stop in /raid4/ports/net/ethereal. r2# grep vm_pindex_t /usr/include/machine/types.h /usr/include/sys/types.h /usr/include/machine/types.h:typedef unsigned int vm_pindex_t; /usr/include/sys/types.h:typedef __vm_pindex_t vm_pindex_t; r2# >How-To-Repeat: >Fix: decide on a definition and use it. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 21:22:08 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD9BC16A4CE; Tue, 6 Jan 2004 21:22:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28FD643D39; Tue, 6 Jan 2004 21:22:08 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from freefall.freebsd.org (anholt@localhost [127.0.0.1]) i075M8FR073603; Tue, 6 Jan 2004 21:22:08 -0800 (PST) (envelope-from anholt@freefall.freebsd.org) Received: (from anholt@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i075M7gA073599; Tue, 6 Jan 2004 21:22:07 -0800 (PST) (envelope-from anholt) Date: Tue, 6 Jan 2004 21:22:07 -0800 (PST) From: Eric Anholt Message-Id: <200401070522.i075M7gA073599@freefall.freebsd.org> To: tamaru@myn.rcast.u-tokyo.ac.jp, anholt@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/60524: mtree tumbles on files begining with hashmark(#) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 05:22:09 -0000 Synopsis: mtree tumbles on files begining with hashmark(#) State-Changed-From-To: open->patched State-Changed-By: anholt State-Changed-When: Tue Jan 6 21:21:37 PST 2004 State-Changed-Why: Fixed in -current but not MFCed. http://www.freebsd.org/cgi/query-pr.cgi?pr=60524 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 21:30:03 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F0EE16A4CE; Tue, 6 Jan 2004 21:30:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA28B43D45; Tue, 6 Jan 2004 21:30:02 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from freefall.freebsd.org (anholt@localhost [127.0.0.1]) i075U2FR073800; Tue, 6 Jan 2004 21:30:02 -0800 (PST) (envelope-from anholt@freefall.freebsd.org) Received: (from anholt@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i075U2iQ073796; Tue, 6 Jan 2004 21:30:02 -0800 (PST) (envelope-from anholt) Date: Tue, 6 Jan 2004 21:30:02 -0800 (PST) From: Eric Anholt Message-Id: <200401070530.i075U2iQ073796@freefall.freebsd.org> To: stefan@fafoe.narf.at, anholt@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/60026: [patch] Fix typo in malloc() size computation in fdformat.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 05:30:03 -0000 Synopsis: [patch] Fix typo in malloc() size computation in fdformat.c State-Changed-From-To: open->closed State-Changed-By: anholt State-Changed-When: Tue Jan 6 21:29:06 PST 2004 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=60026 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 21:40:06 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FA8216A4CE; Tue, 6 Jan 2004 21:40:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B556C43D3F; Tue, 6 Jan 2004 21:40:04 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from freefall.freebsd.org (anholt@localhost [127.0.0.1]) i075e4FR074588; Tue, 6 Jan 2004 21:40:04 -0800 (PST) (envelope-from anholt@freefall.freebsd.org) Received: (from anholt@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i075e4sD074584; Tue, 6 Jan 2004 21:40:04 -0800 (PST) (envelope-from anholt) Date: Tue, 6 Jan 2004 21:40:04 -0800 (PST) From: Eric Anholt Message-Id: <200401070540.i075e4sD074584@freefall.freebsd.org> To: stefan@fafoe.narf.at, anholt@FreeBSD.org, freebsd-bugs@FreeBSD.org, anholt@FreeBSD.org Subject: Re: bin/59144: [patch] Allow a trailing / for mount -u too X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 05:40:06 -0000 Synopsis: [patch] Allow a trailing / for mount -u too State-Changed-From-To: open->patched State-Changed-By: anholt State-Changed-When: Tue Jan 6 21:38:04 PST 2004 State-Changed-Why: Committed to -current. Thanks! Responsible-Changed-From-To: freebsd-bugs->anholt Responsible-Changed-By: anholt Responsible-Changed-When: Tue Jan 6 21:38:04 PST 2004 Responsible-Changed-Why: Committed to -current. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=59144 From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 23:46:30 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11D3116A4CE; Tue, 6 Jan 2004 23:46:30 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A1C043D48; Tue, 6 Jan 2004 23:46:28 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id SAA07187; Wed, 7 Jan 2004 18:46:21 +1100 Date: Wed, 7 Jan 2004 18:46:19 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: "Simson L. Garfinkel" In-Reply-To: <200401070158.i071w1t3032401@www.freebsd.org> Message-ID: <20040107184121.Q7587@gamplex.bde.org> References: <200401070158.i071w1t3032401@www.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-bugs@freebsd.org cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 07:46:30 -0000 On Tue, 6 Jan 2004, Simson L. Garfinkel wrote: > >Synopsis: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h Your header files are out of date. doesn't exist in FreeBSD. > >Description: > building etherreal from ports doesn't work because there are conflicting definitions for vm_pindex_t: > ... > In file included from host/hr_storage.c:36: > /usr/include/machine/types.h:57: error: conflicting types for `vm_pindex_t' > /usr/include/sys/types.h:253: error: previous declaration of `vm_pindex_t' > *** Error code 1 or the port seems to be out of date too. Including the nonexistent file shouldn't be attempted. Bruce From owner-freebsd-bugs@FreeBSD.ORG Tue Jan 6 23:50:27 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C53516A511 for ; Tue, 6 Jan 2004 23:50:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C17A43D39 for ; Tue, 6 Jan 2004 23:50:25 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i077oPFR085153 for ; Tue, 6 Jan 2004 23:50:25 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i077oP6Q085152; Tue, 6 Jan 2004 23:50:25 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Jan 2004 23:50:25 -0800 (PST) Message-Id: <200401070750.i077oP6Q085152@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Subject: Re: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 07:50:27 -0000 The following reply was made to PR kern/60997; it has been noted by GNATS. From: Bruce Evans To: "Simson L. Garfinkel" Cc: freebsd-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h Date: Wed, 7 Jan 2004 18:46:19 +1100 (EST) On Tue, 6 Jan 2004, Simson L. Garfinkel wrote: > >Synopsis: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h Your header files are out of date. doesn't exist in FreeBSD. > >Description: > building etherreal from ports doesn't work because there are conflicting definitions for vm_pindex_t: > ... > In file included from host/hr_storage.c:36: > /usr/include/machine/types.h:57: error: conflicting types for `vm_pindex_t' > /usr/include/sys/types.h:253: error: previous declaration of `vm_pindex_t' > *** Error code 1 or the port seems to be out of date too. Including the nonexistent file shouldn't be attempted. Bruce From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 00:17:35 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34F8816A4CE for ; Wed, 7 Jan 2004 00:17:35 -0800 (PST) Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D01943D46 for ; Wed, 7 Jan 2004 00:17:31 -0800 (PST) (envelope-from jpp-export@t-online.de) Received: from fwd07.aul.t-online.de by mailout03.sul.t-online.com with smtp id 1Ae8sc-0006kp-01; Wed, 07 Jan 2004 09:17:30 +0100 Received: from jpp-dfcos6ji3i6 (JT+ESkZUgeYQlrvsEdxlxCltYumWNXWuoUrQQYokWUmCfQRcN7s4rQ@[217.1.114.164]) by fmrl07.sul.t-online.com with smtp id 1Ae8sH-0Yufpq0; Wed, 7 Jan 2004 09:17:09 +0100 To: freebsd-bugs@freebsd.org From: "jpp" MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="--_mabry_41ce5c82170e41fb76b3176e" Date: Wed, 7 Jan 2004 09:17:09 +0100 Message-ID: <1Ae8sH-0Yufpq0@fmrl07.sul.t-online.com> X-Seen: false X-ID: JT+ESkZUgeYQlrvsEdxlxCltYumWNXWuoUrQQYokWUmCfQRcN7s4rQ@t-dialin.net Subject: oferta notebooki, dodatki. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 08:17:35 -0000 Mime-compliant email programs should not be displaying this line. ----_mabry_41ce5c82170e41fb76b3176e Content-Type: text/plain J.P.P. Computertechnik Import & Export Tel. 0049 202-309 80 21 Fax: 0049 202-309 80 21 Mobil: 0049 172 63 111 22 Email: jpp-export@t-online.de Informacja po polsku. Oferta 01.kw.2004 w zalaczniku. Produkty Ceny w Euro/Netto 1 Szt.10 Szt.Reserw. 1. Cel./2,40GHz/14"/256DDR/20GB/DVD-CD-RW 24x/10x/8x/24x/SIS650grafika do 64MB/2xUSB 2.0/1xPCMCIA/modem/LAN10/100/TV Out/FireWire Nowe. 745,00 3. Armada E500 P III 600, 6,5-10GB, 128MB, CD, FDD. 349-389,00 3. Pamieci/Notebook DDR/SO-DIMM 200 Pin 2,5V. Nowe.256MB/40,00;512MB/110,00 4. Pamieci/Notebook Sync-Dimm 256MB Nowe. 55,00 5. Zasilacze Armada: M, E- 2,7A 18,85V Nowe. 29,00 6. ISDN PCMCIA DIVA. 26,00 7. Modem PCMCIA 56k analogowy. 17-13,00 8. Modem PCMCIA, 28,8-32-34V. 10,00 6- 4,50 9. Karty sieciowe PCMCIA, 10 mbit. 14,00 12-8,00 10. SO-DIMM 32 I 16MB FPM/EDO. 12,00 11. Pamieci 16 MB 5 Volt FPM 72 Piny, Dell Xp, Xpi, Digital,Nowe.16-12,00 12. Zasilacze DELL Xpi, PA 1, 18,5Volt 3,8A. 22-16,00 13. Armada 1700/1750 P II 266-366MHz/1,4-3,2GB/64-128MB/CD/FDD.185-199,00 14. Notebook TFT displays 13" Samsungi lub IBM. 49,00 45,00 15. Notebook TFT displays 14" Samsungi lub IBM. 59,00 55,00 16. Notebook TFT displays 15" Samsungi lub IBM. 79,00 75,00 17. TOSHIBA Subnotebook Portege 3010CT, 266MHz, HDD -3,2-4,3GB, 32MB, zasilacz 100-250 Volt/1320gr./198mm/magnezowa obudowa. 289,00 259,00 18. Compaq zasilacz, 16,5Volt 2,6A, Series 2862. 22-16,00 19. PSION- kabel 56K analog. Min. 100 6,00 20. 24" ELSA monitory Trinitron. 315,00 21. 17" monitory. 39,00 22. Plyty glówne do notebookow: P II, III, Celeron bez testu.27-23,00 23. IBM 600 P II aku "Standart" i "Bay" bez testu. Min.50St 6,99-4,99 24. Compaq Armada 77xx, 233MHz, HDD 2-3GB, 64-144MB, CD-ROM lub FDD, modem wew., bez kabla, niewiele aku. 155,00 25. Compaq Armada 77xx, 166MHz, HDD 2-3GB, 64-144MB, CD-ROM lub FDD, modem wew., bez kabla,niewiele aku. 139,00 26. Compaq Armada LTE 5000 do 5300, HDD 800-1,4GB, 24-48MB, FDD, zasilacz, aku bez testu. CD +20,00. 75,00 27. Poszukujemy: Libretto od modelu 100CT, Portege 34xx, Biblo od: 110, 21xx, DVD i CD-RW (IBM t20, Armada E500), 2,5" hdd od 2,1GB 9,5mm. 28. Jezeli poszukujecie dodatków w pewenej ilosci to prosimy o przeslanie zapaytania emailem. Wszystkie ceny netto/Euro + 16% VAT. Po zwrocie dokumentów celnych zwrot podatku. Odbiór: 42349 Wuppertal- Germany. Odbiór osobisty lub przez spedycje. Platnosc przy odbiorze lub przedplata bankowa (PayPal pod: jppeco@t-online.de ). Nie wszystkie produkty znajduja sie na stanie magazynu. Zmiany cen zastrzezone. Homepage: www.pcmonitore.com www.n-book.de strony jeszcze nie aktywne. Zapytania prosimy kierowac: jpp-export@t-online.de Firma Nazwisko ulica Kod/Miasto Email Mobil Data podpis Cieszymy sie na wspólprace z Panstwem. Z powazaniem. J.P.P. Team Email: jpp-export@t-online.de Biuro: +49 202 309 80 20 Fax: +49 202 309 80 21 Magazyn: +49 202 40 868 50 Mobil: +49 172 63 111 22 j.p.p. computertechnik Kuellenhahner str. 192 D-42349 Wuppertal Germany Przy odpowiedzi prosimy o zalaczenie starge emaila. Tlumacz: http://translation2.paralink.com/ ----_mabry_41ce5c82170e41fb76b3176e Content-Type: application/octet-stream; name="oferta 1kw 2004.doc" Content-Transfer-Encoding: base64 0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAACAAAAhQAAAAAAAAAA EAAAhwAAAAEAAAD+////AAAAAIMAAACEAAAA//////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////s pcEANUAJBAAA+BK/AAAAAAAAEAAAAAAABgAA0nIAAA4AYmpias8yzzIAAAAAAAAAAAAAAAAAAAAA AAAHBBYANIAAAK1YAACtWAAA+QsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//w8AAAAA AAAAAAD//w8AAAAAAAAAAAD//w8AAAAAAAAAAAAAAAAAAAAAAIgAAAAAAKADAAAAAAAAoAMAAKAD AAAAAAAAoAMAAAAAAACgAwAAAAAAAKADAAAAAAAAoAMAABQAAAAAAAAAAAAAANYDAAAAAAAAHh0A AAAAAAAeHQAAAAAAAB4dAAAAAAAAHh0AAJQAAACyHQAA/AAAANYDAAAAAAAA8z8AAGABAAC6HgAA XgAAABgfAAAAAAAAGB8AAAAAAAAYHwAAAAAAABgfAAAAAAAAYSAAAIgAAADpIAAALAAAABUhAAAY AAAAKj8AAAIAAAAsPwAAAAAAACw/AAAAAAAALD8AAAAAAAAsPwAAAAAAACw/AAAAAAAALD8AACQA AABTQQAAUgIAAKVDAABqAAAAUD8AAF0AAAAAAAAAAAAAAAAAAAAAAAAAoAMAAAAAAAAtIQAAAAAA AAAAAAAAAAAAAAAAAAAAAAA/IAAAIgAAAGEgAAAAAAAALSEAAAAAAAAtIQAAAAAAAFA/AAAAAAAA AAAAAAAAAACgAwAAAAAAAKADAAAAAAAAGB8AAAAAAAAAAAAAAAAAABgfAAAnAQAArT8AABYAAACN KwAAAAAAAI0rAAAAAAAAjSsAAAAAAAAtIQAAvAUAAKADAAAAAAAAGB8AAAAAAACgAwAAAAAAABgf AAAAAAAAKj8AAAAAAAAAAAAAAAAAAI0rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAALSEAAAAAAAAqPwAAAAAAAI0rAAAmAAAAjSsAAAAAAACzKwAA jgAAAO43AABoAAAAoAMAAAAAAACgAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKjkAAAAAAAAYHwAAAAAAAK4eAAAMAAAAoF6z3ajU wwEAAAAAAAAAAB4dAAAAAAAA6SYAAJoDAABWOAAAEAAAAAAAAAAAAAAAXjoAAMwEAADDPwAAMAAA APM/AAAAAAAAZjgAAMQAAAAPRAAAAAAAAIMqAAD0AAAAD0QAACAAAAAqOQAAAAAAAAAAAAAAAAAA tAMAABQAAADIAwAADgAAAKADAAAAAAAAoAMAAAAAAACgAwAAAAAAAKADAAAAAAAAAAAAAAAAAAAA AAAAAAAAAA9EAAAAAAAAAAAAAAAAAACgAwAAAAAAACo5AAA0AQAALSEAAAAAAAAtIQAAAAAAAI0r AAAAAAAALSEAAAAAAAAtIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALSEA AAAAAAAtIQAAAAAAAC0hAAAAAAAAUD8AAAAAAABQPwAAAAAAANYDAAAAAAAA1gMAAOQUAAC6GAAA ZAQAAAAAAAAAAAAAdysAABYAAADWAwAAAAAAANYDAAAAAAAAuhgAAAAAAAACAAEBAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1KLlAu UC4JQ29tcHV0ZXJ0ZWNobmlrDSBJbXBvcnQgJiBFeHBvcnQNDVRlbC4gMDA0OSAyMDItMzA5IDgw IDIxIEZheDogMDA0OSAyMDItMzA5IDgwIDIxIE1vYmlsOiAwMDQ5IDE3MiA2MyAxMTEgMjIgRW1h aWw6IBMgSFlQRVJMSU5LICJtYWlsdG86anBwLWV4cG9ydEB0LW9ubGluZS5kZSIgARRqcHAtZXhw b3J0QHQtb25saW5lLmRlFSAgDUluZm9ybWFjamEgcG8gcG9sc2t1Lg0JCQkgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICANT2ZlcnRhCTAxLmt3LjIwMDQNUHJvZHVrdHkHICAgQ2VueSB3 IEV1cm8vTmV0dG8HBwcHMSBTenQuICAgICAgICAgICAxMCBTenQuB1Jlc2Vydy4HB0NlbC4vMiw0 MEdIei8xNJQvMjU2RERSLzIwR0IvRFZELUNELVJXIDI0eC8xMHgvOHgvMjR4L1NJUyAgNjUwIGdy LiBkbyA2NE1CLzJ4VVNCIDIuMC8xeFBDTUNJQS9tb2RlbS9MQU4xMC8xMDAvVFYgT3V0L0ZpcmVX aXJlIE5vd2UuBwc3NDUsMDAHBwdBcm1hZGEgRTUwMCBQIElJSSA2MDAsIDYsNS0xMEdCLAAgADEA MgA4AE0AQgAsACAAQwBEACwAIABGAEQARAAuAAcABwAzADQAOQAtADMAOAA5ACwAMAAwAAcABwAH AFAAYQBtAGkAGQFjAGkALwBOAG8AdABlAGIAbwBvAGsAIABEAEQAUgAvAFMATwAtAEQASQBNAE0A IAAyADAAMAAgAFAAaQBuACAAMgAsADUAVgAuACAATgBvAHcAZQAuAAcAMgA1ADYATQBCAC8ADQA0 ADAALAAwADAABwA1ADEAMgBNAEIALwANADEAMQAwACwAMAAwAAcABwAHAFAAYQBtAGkAGQFjAGkA LwBOAG8AdABlAGIAbwBvAGsAIABTAHkAbgBjAC0ARABpAG0AbQAgADIANQA2AE0AQgAgAE4AbwB3 AGUALgAHAAcANQA1ACwAMAAwAAcABwAHAFoAYQBzAGkAbABhAGMAegBlACAAQQByAG0AYQBkAGEA OgAgAE0ALAAgAEUALQAgADIALAA3AEEAIAAxADgALAA4ADUAVgAgAE4AbwB3AGUALgAHAAcAMgA5 ACwAMAAwAAcABwAHAEkAUwBEAE4AIABQAEMATQBDAEkAQQAgAEQASQBWAEEALgAHAAcAMgA2ACwA MAAwAAcABwAHAE0AbwBkAGUAbQAgAFAAQwBNAEMASQBBACAANQA2AGsAIABhAG4AYQBsAG8AZwBv AHcAeQAuAAcABwAxADcALQAxADMALAAwADAABwAHAAcATQBvAGQAZQBtACAAUABDAE0AQwBJAEEA LAAgADIAOAAsADgALQAzADIALQAzADQAVgAuAAcAMQAwACwAMAAwAAcANgAtACAANAAsADUAMAAH AAcABwBLAGEAcgB0AHkAIABzAGkAZQBjAGkAbwB3AGUAIABQAEMATQBDAEkAQQAsACAAMQAwACAA bQBiAGkAdAAuAAcAMQA0ACwAMAAwAAcAMQAyAC0AOAAsADAAMAAHAAcABwBTAE8ALQBEAEkATQBN ACAAMwAyACAASQAgADEANgBNAEIAIABGAFAATQAvAEUARABPAC4ABwAHADEAMgAsADAAMAAHAAcA BwBQAGEAbQBpABkBYwBpACAAMQA2ACAATQBCACAANQAgAFYAbwBsAHQAIABGAFAATQAgADcAMgAg AFAAaQBuAHkALAAgAEQAZQBsAGwAIABYAHAALAAgAFgAcABpACwAIABEAGkAZwBpAHQAYQBsAC4A BwBOAG8AdwBlAAcAMQA2AC0AMQAyACwAMAAwAAcABwAHAFoAYQBzAGkAbABhAGMAegBlACAARABF AEwATAAgAFgAcABpACwAIABQAEEAIAAxACwAIAAxADgALAA1AFYAbwBsAHQAIAAzACw4QS4HBzIy LTE2LDAwBwcHQXJtYWRhIDE3MDAvMTc1MCBQIElJIDI2Ni0zNjZNSHovMSw0LTMsMkdCLzY0LTEy OE1CL0NEL0ZERAcHMTg1LTE5OSwwMAcHB05vdGVib29rIFRGVCBkaXNwbGF5cyAxM5QgU2Ftc3Vu Z2kgbHViIElCTS4HNDksMDAHNDUsMDAHBwdOb3RlYm9vayBURlQgZGlzcGxheXMgMTSUIFNhbXN1 bmdpIGx1YiBJQk0uBzU5LDAwBzU1LDAwBwcHTm90ZWJvb2sgVEZUIGRpc3BsYXlzIDE1lCBTYW1z dW5naSBsdWIgSUJNLgc3OSwwMAc3NSwwMAcHB1RPU0hJQkEgU3Vibm90ZWJvb2sgUG9ydGVnZSAz MDEwQ1QsIDI2Nk1IeiwgSEREIC0zLDItNCwzR0IsIDMyTUIsIHphc2lsYWN6IDEwMC0yNTAgVm9s dC8xMzIwZ3IuLzE5OG1tL21hZ25lem93YSBvYnVkb3dhLgcyODksMDAHMjU5LDAwBwcHQ29tcGFx IHphc2lsYWN6LCCgMTYsNVZvbHQgMiw2QSwgU2VyaWVzIDI4NjIuBwcyMi0xNiwwMAcHB1BTSU9O LSBrYWJlbCA1NksgYW5hbG9nLgdNaW4uIDEwMAc2LDAwBwcHMjSUIEVMU0EgbW9uaQB0AG8AcgB5 ACAAVAByAGkAbgBpAHQAcgBvAG4ALgAHAAcAMwAxADUALAAwADAABwAHAAcAMQA3AB0gIABtAG8A bgBpAHQAbwByAHkALgAHAAcAMwA5ACwAMAAwAAcABwAHAFAAQgF5AHQAeQAgAGcAQgHzAHcAbgBl ACAAZABvACAAbgBvAHQAZQBiAG8AbwBrAG8AdwA6ACAAUAAgAEkASQAsACAASQBJAEkALAAgAEMA ZQBsAGUAcgBvAG4AIABiAGUAegAgAHQAZQBzAHQAdQAuAAcABwAyADcALQAyADMALAAwADAABwAH AAcASQBCAE0AIAA2ADAAMAAgAFAAIABJAEkAIABhAGsAdQAgAB4gUwB0AGEAbgBkAGEAcgB0AB0g IABpACAAHiBCAGEAeQAdICAAYgBlAHoAIAB0AGUAcwB0AHUALgAHAE0AaQBuAC4ANQAwAFMAdAAH ADYALAA5ADkALQA0ACwAOQA5AAcABwAHAEMAbwBtAHAAYQBxACAAQQByAG0AYQBkAGEAIAA3ADcA eAB4ACwAIAAyADMAMwBNAEgAegAsACAASABEAEQAIAAyAC0AMwBHAEIALAAgADYANAAtADEANAA0 AE0AQgAsACAAQwBEAC0AUgBPAE0AIABsAHUAYgAgAEYARABEACwAIABtAG8AZABlbSB3ZXcuLCBi ZXoga2FibGEsIG5pZXdpZWxlIGFrdS4HBzE1NSwwMAcHB0NvbXBhcSBBcm1hZGEgNzd4eCwgMTY2 TUh6LCBIREQgMi0zR0IsIDY0LTE0NE1CLCBDRC1ST00gbHViIEZERCwgbW9kZW0gd2V3LiwgYmV6 IGthYmxhLG5pZXdpZWxlIGFrdS4HBzEzOSwwMAcHB0NvbXBhcSBBcm1hZGEgTFRFIDUwMDAgZG8g NTMwMCwgSEREIDgwMC0xLDRHQiwgMjQtNDhNQiwgRkRELCB6YXNpbGFjeiwgYWt1IGJleiB0ZXN0 dS4gQ0QgKzIwLDAwLgcHNzUsMDAHBwdQb3N6dWt1amVteTogTGlicmV0dG8gb2QgbW9kZWx1IDEw MENULCBQb3J0ZWdlIDM0eHgsIEJpYmxvIG9kOiAxMTAsIDIxeHgsIERWRCBpIENELVJXIChJQk0g dDIwLCBBcm1hZGEgRTUwMCksIDIsNZQgaGRkIG9kIDIsMUdCIDksNW1tLgcHBwcHAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAABCAAABwgA ABgIAAAZCAAAKAgAACkIAAAqCAAAcwgAAHQIAAB7CAAAfAgAAKcIAACoCAAAqQgAAOzYxrfGqJaC bl1IXTBIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8CCIEDagAAAAAGCAEVaKtVSgAWaE1O0ABPSgIA UUoCAFUIAV5KAgBtSBUEc0gVBCkDagAAAAAVaKtVSgAWaE1O0ABPSgIAUUoCAFUIAV5KAgBtSBUE c0gVBCAVaKtVSgAWaE1O0ABPSgIAUUoCAF5KAgBtSBUEc0gVBAAmFWirVUoAFmhNTtAANQiBT0oC AFFKAgBcCIFeSgIAbUgVBHNIFQQAJhVoq1VKABZoXxdzADUIgU9KAgBRSgIAXAiBXkoCAG1IFQRz SBUEACMVaKtVSgAWaNEMRwA1CIFPSgIAUUoCAF5KAgBtSBUEc0gVBB0WaF8XcwA1CIFPSgIAUUoC AF5KAgBtSBUEc0gVBB0WaNEMRwA1CIFPSgIAUUoCAF5KAgBtSBUEc0gVBCMVaKtVSgAWaF8XcwA1 CIFPSgIAUUoCAF5KAgBtSBUEc0gVBCYMKgcVaKtVSgAWaF8XcwA1CIFPSgIAUUoCAF5KAgBtSBUE c0gVBAAmDCoHFWgAZNkAFmhNTtAANQiBT0oCAFFKAgBeSgIAbUgVBHNIFQQOAAYAAAEIAAAYCAAA KQgAACoIAADDCAAA2QgAAP4IAAAQCQAAGQkAAC4JAAAvCQAA+gABAABOKAAAjawCAPoAAQAATigA AI2sAgDxAAEAAE4oAACNrAIA8QABAABOKAAAjawCAOwAAQAATigAAHY6AgDsAAEAAE4oAAB2OgIA +gABAABOKAAApR4DAOcAAQAATigAAIHTAgDeAAEAAPwcAACNrAIA1QABAACYCAAAgXMCANUAAQAA rAMAAF7IAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAACQAAFiQBSWYBAAAAZ2RfF3MACQMAFiQBSWYBAAAAZ2RfF3MAAAQBAGdk XxdzAAAEDwBnZE1O0AAACAAAEYTEAmCExAJnZF8XcwAABAAAZ2RfF3MAAAsABgAA0nIAAP0AAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEAAEBAakIAAC/CAAAwAgAAMMI AADHCAAAzQgAANgIAADZCAAA/QgAAP4IAAAECQAABQkAAAcJAAAICQAA7djHsJmwgndnWk08LgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAGxZooAfJAEIqAUNKGABtSBUEcGgAAAAAc0gVBCEVaKtVSgAW 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 IABvACAAcAByAHoAZQBzAEIBYQBuAGkAZQAgAHoAYQBwAGEAeQB0AGEAbgBpAGEAIABlAG0AYQBp AGwAZQBtAC4ABwAHAAcABwAHAA0AVwBzAHoAeQBzAHQAawBpAGUAIABjAGUAbgB5ACAAbgBlAHQA dABvAC8ARQB1AHIAbwAgACsAIAAxADYAJQAgAFYAQQBUAC4AIABQAG8AIAB6AHcAcgBvAGMAaQBl ACAAZABvAGsAdQBtAGUAbgB0APMAdwAgAGMAZQBsAG4AeQBjAGgAIAB6AHcAcgBvAHQAIABwAG8A ZABhAHQAawB1AC4AIABPAGQAYgBpAPMAcgA6ACAANAAyADMANAA5ACAAVwB1AHAAcABlAHIAdABh AGwALQAgAEcAZQByAG0AYQBuAHkALgAgAE8AZABiAGkA8wByACAAbwBzAG8AYgBpAHMAdAB5ACAA bAB1AGIAIABwAHIAegBlAHoAIABzAHAAZQBkAHkAYwBqABkBLgAgAFAAQgFhAHQAbgBvAFsBBwEg AHAAcgB6AHkAIABvAGQAYgBpAG8AcgB6AGUAIABsAHUAYgAgAHAAcgB6AGUAZABwAEIBYQB0AGEA IABiAGEAbgBrAG8AdwBhACAAKABQAGEAeQBQAGEAbAAgAHAAbwBkADoAIAATACAASABZAFAARQBS AEwASQBOAEsAIAAiAG0AYQBpAGwAdABvADoAagBwAHAAZQBjAG8AQAB0AC8AbwBuAGwAaQBuAGUA LgBkAGUAIgAgAAEAFABqAHAAcABlAGMAbwBAAHQALwBvAG4AbABpAG4AZQAuAGQAZQAVACAAKQAu ACAATgBpAGUAIAB3AHMAegB5AHMAdABrAGkAZQAgAHAAcgBvAGQAdQBrAHQAeQAgAHoAbgBhAGoA ZAB1AGoABQEgAHMAaQAZASAAbgBhACAAcwB0AGEAbgBpAGUAIABtAGEAZwBhAHoAeQBuAHUALgAg AFoAbQBpAGEAbgB5ACAAYwBlAG4AIAB6AGEAcwB0AHIAegBlAHwBbwBuAGUALgAgAEgAbwBtAGUA cABhAGcAZQA6ACAAEwAgAEgAWQBQAEUAUgBMAEkATgBLACAAIgBoAHQAdABwADoALwAvAHcAdwB3 AC4AcABjAG0AbwBuAGkAdABvAHIAZQAuAGMAbwBtACIAIAABABQAdwB3AHcALgBwAGMAbQBvAG4A aQB0AG8AcgBlAC4AYwBvAG0AFQAgACAAIAAgACAAIAAgABMAIABIAFkAUABFAFIATABJAE4ASwAg ACIAaAB0AHQAcAA6AC8ALwB3AHcAdwAuAG4ALQBiAG8AbwBrAC4AZABlACIAIAABABQAdwB3AHcA LgBuAC0AYgBvAG8AawAuAGQAZQAVACAAIABzAHQAcgBvAG4AeQAgAGoAZQBzAHkAYwB6AGUAIABu AGkAZQAgAGEAawB0AHkAdwBuAGUALgAgACAADQAJAA0AWgBhAHAAeQB0AGEAbgBpAGEAIABwAHIA bwBzAGkAbQB5ACAAawBpAGUAcgBvAHcAYQAHAToAIAATACAASABZAFAARQBSAEwASQBOAEsAIAAi AG0AYQBpAGwAdABvADoAagBwAHAAZQBjAG8AQAB0AC0AbwBuAGwAaQBuAGUALgBkAGUAIgAgAAEA FABqAHAAcAAtAGUAeABwAG8AcgB0AEAAdAAtAG8AbgBsAGkAbgBlAC4AZABlABUAIAAgAA0ACAAN AEYAaQByAG0AYQAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAE4AYQB6AHcA aQBzAGsAbwAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAB1AGwAaQBj AGEAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAEsAbwBkAC8A TQBpAGEAcwB0AG8AIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAARQBtAGEAaQBsACAAIAAg ACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIABNAG8AYgBpAGwAIAAgACAAIAAgACAAIAAgACAA IAAgACAARABhAHQAYQAgAHAAbwBkAHAAaQBzAA0ADQANACAADQAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALps AAC8bAAAvmwAAMhwAADMcAAAjHEAAJBxAADKcgAAzHIAAM5yAADScgAAZQAAAAAAAAAA9q0EAFwA AQAATigAAGoBAgBXAAQAAE4oAAB2OgIAVwABAABOKAAAdjoCAFwAAQAATigAAI2sAgBcAAEAAE4o AACNrAIAXAABAABOKAAAagECAFwAAQAATigAAGoBAgBcAAEAAE4oAABqAQIAXAABAABOKAAAjawC AAAEDwBnZHJ8fgAACAAAD4Tk/l6E5P5nZF8XcwAAmQAAa2RtGAAAFiQBFyQBSWYBAAAAApZGAAXW GAQBAAAEAQAABAEAAAQBAAAEAQAABAEAAAeU5AAI1lwABJj+IBxYIEQlfCkABogdAAAAAAAAAAAA AAAAAAAAAAAGOAQAAAAAAAAAAAAAAAAAAAAAAAbsBAAAAAAAAAAAAAAAAAAAAAAABjgEAAAAAAAA AAAAAAAAAAAAABPWMAAAAP8EAQAAAAAA/wQBAAAAAAD/BAEAAAAAAP8EAQAAAAAA/wQBAAAAAAD/ BAEAABT2A+QqF/YDAAAY9gMAABrWEAAAAP8AAAD/AAAA/wAAAP8b1hAAAAD/AAAA/wAAAP8AAAD/ HNYQAAAA/wAAAP8AAAD/AAAA/x3WEAAAAP8AAAD/AAAA/wAAAP801gYAAQoDRgBh9gPe/gAK3GwA AN5sAADibAAA5GwAAOZsAADobAAA8GwAAAhtAAAObQAALm0AADBtAABqbQAAbG0AAG5tAABybQAA om0AAKRtAACubQAAsG0AAMxtAADabQAA3G0AAOhtAADqbQAA8G0AAPJtAAD6bQAA/m0AABJuAAAw bgAAMm4AADpuAAA8bgAARm4AAExuAABObgAAUm4AAFRuAABYbgAAZG4AAPLh0OG/ruG/0PLQ8tDh muGu8q6J8ol7ifKJ8olq8mryaq7yifKJagAAAAAAAAAAAAAAAAAgFWigB8kAFmj/OnYAT0oCAFFK AgBeSgIAbUgVBHNIFQQAGhZoakfUAE9KAgBRSgIAXkoCAG1IFQRzSBUEACAVaKAHyQAWaDRUsABP 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 yHIAAMpyAADMcgAAznIAANJyAADv3u/eze/e797v3u/e797v3rzetAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAOFmhfF3MAbUgVBHNIFQQAIBVoq1VKABZodmoJAENKEgBPSgIAUUoCAG1IFQRz SBUEACAVaKtVSgAWaFV2dwBDShIAT0oCAFFKAgBtSBUEc0gVBAAgFWirVUoAFmhfF3MAQ0oSAE9K AgBRSgIAbUgVBHNIFQQAIBVoq1VKABZo+it6AENKEgBPSgIAUUoCAG1IFQRzSBUEFDIAMZBoATpw DCvDAB+wgi4gsMZBIbAaAyKwGgMjkBwBJJAcASWwAAAXsMUCGLDFAgyQxAIAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 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 ZQAgAEwAaQBzAHQAZQAAAAIAAAAAAAAAOgD+TwEA8gA6AAwAAABfF3MAAAAJAFcAZgB4AEYAYQB4 AE4AdQBtAAAAAgAPAAwAQ0oUAF9IAQRhShQATgD+TwEAAgFOAAwAAABfF3MAAAALAEIAbwBkAHkA IABUAGUAeAB0ACAAMgAAAAoAEAAPhOT+XoTk/hQAQ0oUAE9KAgBRSgIAX0gBBGFKFAA2AFVAogAR ATYADAAAAF8XcwAAAAkASAB5AHAAZQByAGwAaQBuAGsAAAAMAD4qAUIqAnBoAAD/ADgA/k8BADIB OAAMAAAAXxdzAAAAAAAAAAoAEgAPhOT+XoTk/hQAT0oCAFFKAgBeSgIAbUgVBHNIFQRWAENAAQAy AVYADAAAAF8XcwAAABcAVABlAHgAdABrAPYAcgBwAGUAcgAtAFoAZQBpAGwAZQBuAGUAaQBuAHoA dQBnAAAADgATAA+EGwEUpHgAXoQbAQAAUACZAAEAQgFQAAwBAADff+gAAAAQAFMAcAByAGUAYwBo AGIAbABhAHMAZQBuAHQAZQB4AHQAAAACABQAFABDShAAT0oFAFFKBQBeSgUAYUoQAAAAAAD5CwAA BgAAgAAAAAD/////AQAAAAQgAAD//wEAIiajAAAAAAAAAAAA+QsAAAAAAAAAAAAAAAABAAAAGAAA ACkAAAAqAAAAwwAAANkAAAD+AAAAEAEAABkBAAAuAQAALwEAADABAAAxAQAASgEAAFIBAABTAQAA 1wEAANgBAADfAQAA4AEAAOEBAAASAgAAEwIAAB4CAAAfAgAAIAIAAFECAABYAgAAXgIAAGUCAABs AgAAbQIAAG4CAACVAgAAlgIAAJwCAACdAgAAngIAAMgCAADJAgAAzwIAANACAADRAgAA4wIAAOQC AADqAgAA6wIAAOwCAAAIAwAACQMAABIDAAATAwAAFAMAAC8DAAA1AwAAPQMAAD4DAAA/AwAAXwMA AGUDAABtAwAAbgMAAG8DAACKAwAAiwMAAJEDAACSAwAAkwMAAMwDAADRAwAA2gMAANsDAADcAwAA BQQAAAYEAAAPBAAAEAQAABEEAABMBAAATQQAAFgEAABZBAAAWgQAAIYEAACMBAAAkgQAAJMEAACU BAAAwAQAAMYEAADMBAAAzQQAAM4EAAD6BAAAAAUAAAYFAAAHBQAACAUAAIEFAACIBQAAjwUAAJAF AACRBQAAvwUAAMAFAADJBQAAygUAAMsFAADkBQAA7QUAAPIFAADzBQAA9AUAABEGAAASBgAAGQYA ABoGAAAbBgAAKQYAACoGAAAwBgAAMQYAADIGAABsBgAAbQYAAHYGAAB3BgAAeAYAAKcGAACwBgAA ugYAALsGAAC8BgAAIgcAACMHAAAqBwAAKwcAACwHAACRBwAAkgcAAJkHAACaBwAAmwcAAPwHAAD9 BwAAAwgAAAQIAAAFCAAAjAgAAI0IAACOCAAAjwgAAJAIAADqCAAA6wgAAOwIAADtCAAA7ggAAO8I AAD0CgAA9goAAFYLAABYCwAA9QsAAPYLAAD3CwAA+wsAAJgAAAAAMAAAAAAAAACAAAAAgAAAAAAA AAAAgACYAAAAADAAAAAAAAAAgAAAAIAAAABwAAAAAAAAmAAAAAAwAAAAAAAAAIAAAACAAAAAAAAA AAAAAJgAAAAAMAAAAAAAAACAAAAAgAAAAAAAAAAAgACYAAAADzAAAAAAAAAAgAAAAIAAAAAAAAAA AAAAmAAAAA8wAAAAAAAAAIAAAACAAAAAAAAAAACAAJgAAAAAMAAAAAAAAACAAAAAgAAAAAAAAAAA gAAIAAAAATAAAAAAAAAAgAAAAIAAAAAAAAAAAAAAqQAAAAMwAAAAAAAAAID+AAAAAQAAAAAAAACg AKkAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACpAAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAA mQAAAAAwAAAAAAAAAID+AAAAAQAABAAAAACgAKkAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACp AAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqQAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAJEA AAAAMAAAAAAAAACA/gAAAAEAAAQAAAAAoACpAAEgADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqQAA AAAwAAAAAAAAAID+AAAAAQAAKAAAAAAgAKkAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACpAAAA ADAAAAAAAAAAgP4AAAABAAAoAAAAACAAmQAAAAAwAAAAAAAAAID+AAAAAQAALAAAAAAgAKkAASAA MAEAAAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqQAAAAAw AAAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACRQAAAADAA AAAAAAAAgP4AAAABAAAEAAAAAKAAqQABIAAwAgAAAAAAAID+AAAAAQAAAAAAAAAgAKkAAAAAMAAA AAAAAACA/gAAAAEAABAAAAAAAACpAAAAADAAAAAAAAAAgP4AAAABAAAQAAAAACAAqQAAAAAwAAAA AAAAAID+AAAAAQAAEAAAAAAAAKkAAAAAMAAAAAAAAACA/gAAAAEAABAAAAAAIACpAAAAADAAAAAA AAAAgP4AAAABAAAQAAAAACAAmQAAAAAwAAAAAAAAAID+AAAAAQAAFAAAAAAgAKkAASAAMAMAAAAA AACA/gAAAAEAAAAAAAAAIACpQAAAADAAAAAAAAAAgP4AAAABAAAoAAAAACAAqUAAAAAwAAAAAAAA AID+AAAAAQAAKAAAAAAgAKlAAAAAMAAAAAAAAACA/gAAAAEAACgAAAAAIACZQAAAADAAAAAAAAAA gP4AAAABAAAsAAAAACAAqQABIAAwBAAAAAAAAID+AAAAAQAAKAAAAAAgAKlAAAAAMAAAAAAAAACA /gAAAAEAACgAAAAAIACpQAAAADAAAAAAAAAAgP4AAAABAAAoAAAAACAAqUAAAAAwAAAAAAAAAID+ AAAAAQAAKAAAAAAgAJlAAAAAMAAAAAAAAACA/gAAAAEAACwAAAAAIACpAAEgADAFAAAAAAAAgP4A AAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAAAAAAAACA/gAA AAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAmUAAAAAwAAAAAAAAAID+AAAA AQAABAAAAACgAKkAASAAMAYAAAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAAB AAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAAAAAAAACA/gAAAAEA AAAAAAAAoACZQAAAADAAAAAAAAAAgP4AAAABAAAEAAAAAKAAqQABIAAwBwAAAAAAAID+AAAAAQAA AAAAAACgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAABAAAA AAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAJFAAAAAMAAAAAAAAACA/gAAAAEAAAQA AAAAoACpAAEgADAIAAAAAAAAgP4AAAABAAAAAAAAACAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAA AACgAKkAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAA AKAAkUAAAAAwAAAAAAAAAID+AAAAAQAABAAAAACgAKkAASAAMAkAAAAAAACA/gAAAAEAAAAAAAAA oACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACg AKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACZQAAAADAAAAAAAAAAgP4AAAABAAAEAAAAAKAA qQABIAAwCgAAAAAAAID+AAAAAQAAAAAAAAAgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACp QAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAJlA AAAAMAAAAAAAAACA/gAAAAEAAAQAAAAAoACpAAEgADALAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAA AAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACpQAAA ADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAkUAAAAAwAAAAAAAAAID+AAAAAQAABAAAAACgAKkAASAA MAwAAAAAAACA/gAAAAEAACAAAAAAIACpAAAAADAAAAAAAAAAgP4AAAABAAAgAAAAACAAqQAAAAAw AAAAAAAAAID+AAAAAQAAAAAAAAAgAKkAAAAAMAAAAAAAAACA/gAAAAEAACAAAAAAIACZAAAAADAA AAAAAAAAgP4AAAABAAAkAAAAACAAqQABIAAwDQAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAA AAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAA AAAAAID+AAAAAQAAAAAAAACgAJlAAAAAMAAAAAAAAACA/gAAAAEAAAQAAAAAoACpAAEgADAOAAAA AAAAgP4AAAABAAAAAAAAACAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAAAAAA AACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAkUAAAAAwAAAAAAAA AID+AAAAAQAABAAAAACgAKkAASAAMA8AAAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAA gP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAAAAAAAACA /gAAAAEAAAAAAAAAoACRQAAAADAAAAAAAAAAgP4AAAABAAAEAAAAAKAAqQABIAAwEAAAAAAAAID+ AAAAAQAAAAAAAAAgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAIACpQAAAADAAAAAAAAAAgP4A AAABAAAAAAAAACAAqUAAAAAwAAAAAAAAAID+AAAAAQAAIAAAAAAgAJlAAAAAMAAAAAAAAACA/gAA AAEAACQAAAAAIACpAAEgADARAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAA AQAAAAAAAACgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAAB AAAAAAAAAKAAkUAAAAAwAAAAAAAAAID+AAAAAQAABAAAAACgAKkAASAAMBIAAAAAAACA/gAAAAEA AAAAAAAAoACpAAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAA AAAAAACgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACRQAAAADAAAAAAAAAAgP4AAAABAAAE AAAAAKAAqQABIAAwEwAAAAAAAID+AAAAAQAAAAAAAAAgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAA AAAAoACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAA AACgAJlAAAAAMAAAAAAAAACA/gAAAAEAAAQAAAAAoACpAAEgADAUAAAAAAAAgP4AAAABAAAAAAAA ACAAqUAAAAAwAAAAAAAAAID+AAAAAQAAKAAAAAAgAKlAAAAAMAAAAAAAAACA/gAAAAEAACgAAAAA IACpQAAAADAAAAAAAAAAgP4AAAABAAAoAAAAACAAmUAAAAAwAAAAAAAAAID+AAAAAQAALAAAAAAg AKkAASAAMBUAAAAAAACA/gAAAAEAAAAAAAAAIACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAA qUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACZ QAAAADAAAAAAAAAAgP4AAAABAAAEAAAAAKAAqQABIAAwFgAAAAAAAID+AAAAAQAAAAAAAAAgAKkA AAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAA AAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAJlAAAAAMAAAAAAAAACA/gAAAAEAAAQAAAAAoACpAAEg ADAXAAAAAAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAKAAAAAAgAKlAAAAA MAAAAAAAAACA/gAAAAEAACgAAAAAIACpQAAAADAAAAAAAAAAgP4AAAABAAAoAAAAACAAmUAAAAAw AAAAAAAAAID+AAAAAQAALAAAAAAgAKkAASAAMBgAAAAAAACA/gAAAAEAAAAAAAAAIACpQAAAADAA AAAAAAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAA AAAAAACA/gAAAAEAAAAAAAAAoACZQAAAADAAAAAAAAAAgP4AAAABAAAEAAAAAKAAqQABIAAwGQAA AAAAAID+AAAAAQAAAAAAAACgAKlAAAAAMAAAAAAAAACA/gAAAAEAAAAAAAAAoACpQAAAADAAAAAA AAAAgP4AAAABAAAAAAAAAKAAqUAAAAAwAAAAAAAAAID+AAAAAQAAAAAAAACgAJlAAAAAMAAAAAAA AACA/gAAAAEAAAQAAAAAoACpAAEgADAaAAAAAAAAgP4AAAABAAAAAAAAAKAAqQAAAAAwAAAAAAAA AID+AAAAAQAAKAAAAAAgAKkAAAAAMAAAAAAAAACA/gAAAAEAACgAAAAAIACpAAAAADAAAAAAAAAA gP4AAAABAAAoAAAAACAAmQAAAAAwAAAAAAAAAID+AAAAAQAALAAAAAAgAKkAASAAMBsAAAAAAACA /gAAAAEAAAAAAAAAoACpQAAAADAAAAAAAAAAgJsBAAABAAAoAAAAACAAqUAAAAAwAAAAAAAAAICb AQAAAQAAKAAAAAAgAKlAAAAAMAAAAAAAAACAmwEAAAEAACgAAAAAIACZQAAAADAAAAAAAAAAgJsB AAABAAAsAAAAACAAmAAAAAAwAAAAAAAAAIAAAACAAAAAAAAAAAAAAJgAAAAPMAAAAAAAAACAAAAA gAAAABgAAAAAAACYAAAADzAAAAAAAAAAgAAAAIAAAAAgAAAAAAAAmAAAAAAwAAAAAAAAAIAAAACA AAAAGAAAAAAAAJgAAAAAMAAAAAAAAACAmwEAAAAAACAAAAAAgACYAAAAADAAAAAAAAAAgJsBAAAA AAAAAAAAAAAAmAAAAAAwAAAAAAAAAICbAQAAAAAAGAAAAACAAJgAAAAAMAAAAAAAAACAAAAAgAAA ABgAAAAAgACYAAAAADAAAAAAAAAAgJsBAAAAAAAgAAAAAIAAAAAAABgAAAAqAAAAwwAAANkAAAD+ AAAAEAEAABkBAAAuAQAALwEAADABAAAxAQAASgEAAFIBAABTAQAA1wEAANgBAADfAQAA4AEAAOEB AADyBQAA8wUAAPQFAAAZBgAAGgYAABsGAAApBgAAKgYAADAGAAAxBgAAMgYAAO0IAADuCAAA7wgA APQKAAD7CwAAmgAAAAAwAAAAAAAAAIAAAACAAAAASAAAAACAB5oAAAAAMAAAAAAAAACAAAAAgAAA AEgAAAAAgAeYQAAADzAAAAAAAAAAgAAAAIAAAABIAAAAAIABmgAAAA8wAAAAAAAAAIAAAACAAAAA SAAAAACAB5gAAAAAMAAAAAAAAACAAAAAgAAAAEgAAAAAgAAKAAAAATAAAAAAAAAAgAAAAIAAAABI AAAAAIAHqQAAAAMwAAAAAAAAAICbAQAAAQAASAAAAACgAKsAAAAAMAAAAAAAAACAmwEAAAEAAEgA AAAAIAepAAAAADAAAAAAAAAAgJsBAAABAABIAAAAACAAmQAAAAAwAAAAAAAAAICbAQAAAQAABAAA AAAgAKkAAAAAMAAAAAAAAACAmwEAAAEAAEgAAAAAIACpAAAAADAAAAAAAAAAgJsBAAABAABIAAAA ACAAqwAAAAAwAAAAAAAAAICbAQAAAQAAAAAAAAAgB5kAAAAAMAAAAAAAAACAmwEAAAEAAAQAAAAA IACrAAEgADAAAAAAAAAAgJsBAAABAAAAAAAAACAHTTkBMAEwAAAAAAAAAgAAAAEAAQAAAAAAAACg AU85ATABMAAAAAAAAAIAAAABAAEAAAAAAAAAoAdNOQEwATAAAAAAAAACAAAAAQABAAAAAAAAAKAB TXkBMAAwAAAAAAAAAgAAAAEAAQAADAAAAACgAU95ATAAMAAAAAAAAAEAAAABAAAA9AwAAAAAzQdP eQEwADAAAAAAAAACAAAAAQABAAAIAAAAAKAHTXkBMAEwAAAAAAAAAgAAAAEAAQAADAAAAACgBU95 ATAEMAAAAAAAAAEAAAABAAAA9AwAAAAAzQdPeQEwATAAAAAAAAACAAAAAQABAAAIAAAAAKAHQkKd AIQ8nQCAC50AjAudAGAOAQAADAAAAAAgB095ATAGMAAAAAAAAAIAAAABAAEAAAAAAAAAIAfqePoA AjAAAAAAAAAAAAAAGHkBAAAIAAAAAKAHT3kBMAcwAAAAAAAAAgAAAAEAAQAACAAAAACgB095ATAH MAAAAAAAAAIAAAABAAEAAAgAAAAAoAfqePoAAjAAAAAAAAAAAAAAGHkBAAAEAAAAACAHTzkBMCIw AAAAAAAAAQAAAAEAAACsAp8ARFh1B005ATAiMAAAAAAAAAEAAAABAAEAAAQAAAAAIAEIQAAAADAA AAAAAAAAAAAAAAAAAAAAAAAAAAABmkAAAA8wAAAAAAAAAIAAAACAAAAASAAAAACAB5oAAAAAMAAA AAAAAACAAAAAgAAAAAAAANwoUQcABgAAqQgAAAgJAAA3CQAAyAkAAEgKAAC+DAAAWA4AAJEPAAAk EAAAThEAAJASAACKEwAA3GwAAGRuAAB8bwAAAHEAAJhxAADScgAACgAAAA0AAAAOAAAAEAAAABIA AAAVAAAAHAAAACIAAAAnAAAAKgAAAC4AAAAxAAAANAAAADsAAAA8AAAAPQAAAD4AAAA/AAAAAAYA AC8JAABSCQAA4AkAAD4KAADaCgAAOgsAAKALAADWCwAAJgwAAHwMAADcDAAAJA0AALYNAAAQDgAA WQ4AAJMOAADNDgAABw8AAJAPAADKDwAA8w8AADQQAABiEAAA7hAAAHYRAAArEgAAmhIAAAQTAACP EwAAumwAANJyAAALAAAADwAAABEAAAATAAAAFAAAABYAAAAXAAAAGAAAABkAAAAaAAAAGwAAAB0A AAAeAAAAHwAAACAAAAAhAAAAIwAAACQAAAAlAAAAJgAAACgAAAApAAAAKwAAACwAAAAtAAAALwAA ADAAAAAyAAAAMwAAADUAAAA6AAAAAAYAANJyAAAMAAAAewAAAKgAAAC/AAAAwgkAAOsJAAD+CQAA XQoAAIYKAACZCgAAoQoAAMUKAADTCgAAEgsAADsLAABSCwAA+QsAABNYFP8VhBNYFP8VgBNYFP8V hBNYFP8VhBNYFP8VjA8AAPA4AAAAAAAG8BgAAAACCAAAAgAAAAIAAAABAAAAAQAAAAMAAABAAB7x EAAAAP//AAAAAP8AgICAAPcAABAADwAC8N4AAAAQAAjwCAAAAAIAAAACBAAADwAD8HwAAAAPAATw KAAAAAEACfAQAAAAAAAAAAAAAAAAAAAAAAAAAAIACvAIAAAAAAQAAAUAAAAPAATwRAAAAEIBCvAI AAAAAgQAAAAKAAATAAvwBgAAAD8CAAACABMAIvEGAAAAvwMAAACAAAAQ8AQAAAAAAAAAAAAR8AQA AAADAAAADwAE8EIAAAASAArwCAAAAAEEAAAADgAAUwAL8B4AAAC/AQAAEADLAQAAAAD/AQAACAAE AwkAAAA/AwEAAQAAABHwBAAAAAEAAABWCwAA+QsAAAIEAAD3/v//PAAAADclAAA8AAAAdAAAAAAA //8FAAAADABfAEgAbAB0ADMANQA3ADEAMAAwADIAOQAMAF8ASABsAHQAMwA1ADcAOAAyADkANQAz AAwAXwBIAGwAdAAzADUANwA4ADIAOQA1ADQADABfAEgAbAB0ADMANQA3ADEAMAAwADAAOQAMAF8A SABsAHQAMwA1ADcAMQAwADAAMQAwAKsAAACsAAAArAAAALMAAACzAAAA+wsAAAAAAEABAABAAgAA QAMAAEAEAABArAAAAK0AAACtAAAAtAAAALQAAAD7CwAAAAAAAAEAAAAHAAAACAAAABgAAAAZAAAA KAAAACoAAAAtAAAALwAAAHMAAAB0AAAAewAAAKkAAAC/AAAAwwAAAM0AAADOAAAA2AAAAP4AAAAE AQAABQEAAAcBAAAIAQAADwEAABABAAAYAQAAHAEAACABAAAhAQAAIgEAACMBAAAnAQAAKAEAAC0B AAAxAQAANwEAAEIBAABEAQAARQEAAEkBAABKAQAAUQEAAFMBAACIAQAAiQEAAIwBAACOAQAA1gEA ANgBAADeAQAAEwIAAB0CAAAgAgAAbAIAAG4CAACVAgAAlgIAAJwCAACeAgAAyAIAAMkCAADPAgAA 0QIAAOMCAADkAgAA6gIAAOwCAAAGAwAACQMAABIDAAAUAwAAPQMAAD8DAABNAwAATgMAAG0DAABv AwAAigMAAIsDAACRAwAAkwMAANADAADRAwAA2gMAANwDAAAFBAAABgQAAAsEAAAMBAAADwQAABEE AAA7BAAAPAQAAEsEAABNBAAAVwQAAHQEAAB8BAAAfQQAAIAEAACGBAAAkgQAAJQEAADMBAAAzgQA AAYFAAAIBQAAXwUAAGAFAABnBQAAaAUAAG0FAABuBQAAgAUAAIEFAACPBQAAkQUAAKIFAACjBQAA vgUAAMAFAADJBQAAywUAANEFAADSBQAA4wUAAOQFAADnBQAA6QUAAPIFAAD0BQAAEQYAABIGAAAZ BgAAGwYAACkGAAAqBgAAMAYAADIGAABsBgAAbQYAAHYGAAB4BgAAiQYAAIoGAACSBgAAlAYAAJYG AACXBgAAmgYAAJwGAACqBgAAqwYAAK8GAACwBgAAugYAALwGAADOBgAA0AYAAAIHAAADBwAABwcA AAkHAAAhBwAAIwcAACkHAAAsBwAAPgcAAEAHAAB2BwAAeQcAAJAHAACSBwAAmQcAAJsHAACsBwAA rQcAAPoHAAD9BwAAAwgAAAUIAABxCAAAcwgAAIoIAACQCAAAvQgAAL4IAADqCAAA7wgAAAMJAAAE CQAACAkAAAsJAABHCQAASQkAAGEJAABjCQAAdgkAAHcJAACFCQAAhwkAAI8JAACQCQAAvAkAAL0J AADCCQAA7AkAAP4JAAADCgAAOQoAADsKAABSCgAAUwoAAF0KAACHCgAAmQoAAMYKAADTCgAA1goA AOUKAADoCgAA6QoAAPAKAAD2CgAAEAsAADwLAABGCwAARwsAAFILAABYCwAAXQsAAHALAAB4CwAA jQsAAJILAACpCwAAswsAAMILAADHCwAA2AsAAO0LAADuCwAA9AsAAPsLAAAHAAUABwAFAAcABQAH AAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcA BQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAF AAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUA BwAFAAcABQAHABwABwAcAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAH AAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcA BQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAF AAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUA BwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAQABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAF AAcABQAHAAUABwAFAAcABQAHAAAAAAABAAAAFwAAABkAAAAoAAAAKgAAAMIAAADDAAAA2AAAAP4A AAAPAQAAEAEAABgBAAAcAQAALQEAADEBAABJAQAASgEAAFEBAABTAQAA1gEAANgBAADeAQAAEwIA AB0CAAAgAgAAUAIAAFECAABXAgAAWAIAAF0CAABeAgAAZAIAAGUCAABrAgAAbgIAAJQCAACWAgAA mwIAAJ4CAADHAgAAyQIAAM4CAADRAgAA4gIAAOQCAADpAgAA7AIAAAcDAAAJAwAAEQMAABQDAAAu AwAALwMAADQDAAA1AwAAPAMAAD8DAABeAwAAXwMAAGQDAABlAwAAbAMAAG8DAACJAwAAiwMAAJAD AACTAwAAywMAAMwDAADQAwAA0QMAANkDAADcAwAABAQAAAYEAAAOBAAAEQQAAEsEAABNBAAAVwQA AIYEAACLBAAAjAQAAJEEAACUBAAAvwQAAMAEAADFBAAAxgQAAMsEAADOBAAA+QQAAPoEAAD/BAAA AAUAAAUFAAAIBQAAgAUAAIEFAACHBQAAiAUAAI4FAACRBQAAvgUAAMAFAADIBQAAywUAAOMFAADk BQAA7AUAAO0FAADxBQAA9AUAABAGAAASBgAAGAYAABsGAAAoBgAAKgYAAC8GAAAyBgAAawYAAG0G AAB1BgAAeAYAAKYGAACnBgAArwYAALAGAAC5BgAAvAYAACEHAAAjBwAAKQcAACwHAACQBwAAkgcA AJgHAACbBwAA+wcAAP0HAAACCAAABQgAAIsIAACQCAAA6QgAAO8IAADzCgAA9goAAFULAABYCwAA 9AsAAPsLAAAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAH AAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcA BQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAF AAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUA BwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAFAAcABQAH AAUABwAFAAcABQAHAAUABwAFAAcABQAHAAUABwAAAAAAAQAAABgAAAApAAAAKgAAAOEBAAATAgAA IAIAAEsCAABuAgAAlgIAAOwCAAAJAwAAPwMAAF8DAACTAwAAzAMAABEEAABNBAAAWgQAAIYEAADL BQAA5AUAAPQFAAASBgAAGwYAACoGAAAyBgAAbQYAAHgGAACnBgAAsAYAACwHAACSBwAABQgAAFMK AAD2CgAAWAsAAPcLAAD4CwAA+wsAAAcACAAFAAcACAAHAAUABwAIAAcACAAFAAgABQAIAAcACAAH AAUABwAIAAUACAAFAAgABQAIAAcACAAHAAUACAAHAAgABwAIAAcACAAFAAcAAAAAAOUKAADoCgAA +wsAAAcABAAHAP//BAAAAAMAagBwAHAAAAAJAGoAcABwAC0AZQB1AHIAbwBwAAAABQD7VpsMEkuO Of8P/w//D/8P/w//D/8P/w//DxAAlm88U8Q89FP/D/8P/w//D/8P/w//D/8P/w8QACwcvFMYtSTx /w//D/8P/w//D/8P/w//D/8PEABHTGlZnp5MFv8P/w//D/8P/w//D/8P/w//DxAApldBekAlJpf/ D/8P/w//D/8P/w//D/8P/w8QAAEAAAAAEAEAAAAAAAAAAABoAQAAAAAAAAoYAAAPhNACEYSY/hXG BQAB0AIGXoTQAmCEmP6HaAAAAACISAAAAgAAAC4AAQAAAASQAQAAAAAAAAAAAGgBAAAAAAAAChgA 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 sBNghJj+h2gAAAAAiEgAAAIABgAuAAEAAAAEkAEAAAAAAAAAAABoAQAAAAAAAAoYAAAPhIAWEYSY /hXGBQABgBYGXoSAFmCEmP6HaAAAAACISAAAAgAHAC4AAQAAAAKSAQAAAAAAAAAAAGgBAAAAAAAA ChgAAA+EUBkRhEz/FcYFAAFQGQZehFAZYIRM/4doAAAAAIhIAAACAAgALgAFAAAALBy8UwAAAAAA AAAAAAAAAKZXQXoAAAAAAAAAAAAAAAD7VpsMAAAAAAAAAAAAAAAAlm88UwAAAAAAAAAAAAAAAEdM aVkAAAAAAAAAAAAAAAD/////////////////////////////BQAAAAAAAAAAAAAAAAD//wUAAAAS AA8ABwQZAAcEGwAHBA8ABwQZAAcEGwAHBA8ABwQZAAcEGwAHBBIADwAHBBkABwQbAAcEDwAHBBkA BwQbAAcEDwAHBBkABwQbAAcEEgAPAAcEAQAHBBsABwQPAAcEGQAHBBsABwQPAAcEGQAHBBsABwQS AA8ABwQZAAcEGwAHBA8ABwQZAAcEGwAHBA8ABwQZAAcEGwAHBBIADwAHBBkABwQbAAcEDwAHBBkA BwQbAAcEDwAHBBkABwQbAAcERwAAAAQAAAAIAAAA5QAAAAAAAABGAAAAemgBAK0vAwDEAQcAdmoJ ACc2DwAyUhEArl4VABJTHAA4ZBwAVCMeAA0DIAAuSywAsjw2ACZtNgBoNzkAdTg5AEgwPgDnbT4A /BtFAE9uRQDRDEcAnRxIAKtVSgCDPFEAMj1VAMYUXADHa10ArmdhAPEdYgBSIGcAU39nAOUeagCe FnAA7jVwAF8XcwD/OnYAVXZ3AJtUeAD6K3oAYWp9AHJ8fgC2ZowAaUOPABM+kAD0IZUAmkKWAJ8v mAAjYZgAh3KeAMtbnwB7RqYAoGynAHxeqQBQP6wANFSwANlbsgBWWbgA8CK7ALNuvAAMK8MAoAfJ AE1O0ABqR9QAAGTZACMo3QBBNd0AXHPoAN9/6AC8I+4ABwDyAF5V/AAAAAAAEAEAABkBAAAuAQAA LwEAADABAAAxAQAASgEAAFIBAABTAQAA1wEAANgBAADfAQAA4AEAAOEBAAASAgAAEwIAAB4CAAAf AgAAIAIAAFECAABeAgAAbAIAAG0CAABuAgAAlQIAAJYCAACcAgAAnQIAAJ4CAADIAgAAyQIAAM8C AADQAgAA0QIAAOMCAADkAgAA6gIAAOsCAADsAgAACAMAAAkDAAASAwAAEwMAABQDAAAvAwAANQMA AD0DAAA+AwAAPwMAAF8DAABlAwAAbQMAAG4DAABvAwAAigMAAIsDAACRAwAAkgMAAJMDAADMAwAA 0QMAANoDAADbAwAA3AMAAAUEAAAGBAAADwQAABAEAAARBAAATAQAAE0EAABYBAAAWQQAAFoEAACG BAAAjAQAAJIEAACTBAAAlAQAAMAEAADGBAAAzAQAAM0EAADOBAAA+gQAAAAFAAAGBQAABwUAAAgF AACBBQAAiAUAAI8FAACQBQAAkQUAAL8FAADABQAAyQUAAMoFAADLBQAA5AUAAO0FAADyBQAA8wUA APQFAAARBgAAEgYAABkGAAAaBgAAGwYAACkGAAAqBgAAMAYAADEGAAAyBgAAbAYAAG0GAAB2BgAA dwYAAHgGAACnBgAAsAYAALoGAAC7BgAAvAYAACIHAAAjBwAAKgcAACsHAAAsBwAAkQcAAJIHAACZ BwAAmgcAAJsHAAD8BwAA/QcAAAMIAAAECAAABQgAAIwIAACNCAAAjggAAI8IAACQCAAA6ggAAOsI AADsCAAA7QgAAO4IAABjCQAA9AoAAPcLAAD7CwAAAAAAAAgAAAACAQAAAgEAAAIBAACeAQAEAgEA AAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAEAgEAAAIBAAACAQAAAgEAAJ4BAAQCAQAA AgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAEAgEAAAIBAAACAQAAAgEAAJ4BAAQC AQAAAgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAEAgEAAAIBAAACAQAAAgEAAJ4B AAQCAQAAAgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAEAgEAAAIBAAACAQAAAgEA AJ4BAAQCAQAAAgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAEAgEAAAIBAAACAQAA AgEAAJ4BAAQCAQAAAgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAEAgEAAAIBAAAC AQAAAgEAAJ4BAAQCAQAAAgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAEAgEAAAIB AAACAQAAAgEAAJ4BAAQCAQAAAgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAEAgEA AAIBAAACAQAAAgEAAJ4BAAQCAQAAAgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACeAQAE AgEAAAIBAAACAQAAAgEAAJ4BAAQCAQAAAgEAAAIBAAACAQAAngEABAIBAAACAQAAAgEAAAIBAACW AQAEAQAAAAAAAAAAAAAA/0ABgAEA5QoAAOUKAABwIEECngGeAeUKAAAAAAAA5QoAAJj+IBwCWAAA AAAAAAAAAgAAAAMAAAAEAAAABgAAAAcAAJAIAAD5CwAAYAAAEABAAABgAAAKAAAAAGAAAAwAAAAA YAAAHABAAABgAAAQAAAAAGAAACQAQAAAYAAAbAAAAAD//wEAAAAHAFUAbgBrAG4AbwB3AG4A//8B AAgAAAAAAAAAAAAAAP//AQAAAAAA//8AAAIA//8AAAAA//8AAAIA//8AAAAABgAAAEcWkAEAAAIC BgMFBAUCAwSHegAgAAAAgAgAAAAAAAAA/wEAAAAAAABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBt AGEAbgAAADUWkAECAAUFAQIBBwYCBQcAAAAAAAAAEAAAAAAAAAAAAAAAgAAAAABTAHkAbQBiAG8A bAAAADMmkAEAAAILBgQCAgICAgSHegAgAAAAgAgAAAAAAAAA/wEAAAAAAABBAHIAaQBhAGwAAAA7 BpABhgcCAQYAAwEBAQEBAwAAAAAADggQAAAAAAAAAAEABAAAAAAAUwBpAG0AUwB1AG4AAACLW1NP AAA3JpABAAACCwYEAwUEBAIEhwIAIAAAAAAAAAAAAAAAAJ8BAAAAAAAAVgBlAHIAZABhAG4AYQAA ADUmkAEAAAILBgQDBQQEAgSHegBhAAAAgAgAAAAAAAAA/wEBAAAAAABUAGEAaABvAG0AYQAAACIA BABxCIgYAPDEAgAAqQEAAAAAZXR8BgA4gWarKIEmFAAAAAAAowEAAFYKAAABAAYAAAAEAAMQFgAA AKMBAABWCgAAAQAGAAAAFgAAAAAAAAAhAwDwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa AxwBtAC0AIGBfjQAABEAGQBkAAAAGQAAAPMLAADzCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAA0zg1EA8BAACAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKfD/DwEAAT8AAOQEAAD///9/////f/// /3////9/////f////3////9/XxdzAP//EgAAAAAAAAAaAEUAbQBhAGkAbAA6ACAAagBwAHAALQBl AHgAcABvAHIAdABAAHQALQBvAG4AbABpAG4AZQAAAAAAAAADAGoAcABwAAMAagBwAHAAAAAAAAAA AAAAAAAAAAAAAAAAAAAgAAAABgAAAAUAAAAAAAwAAQAMAAIADAADAAwABAAMAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7/ AAAFAQIAAAAAAAAAAAAAAAAAAAAAAAEAAADghZ/y+U9oEKuRCAArJ7PZMAAAAHQBAAARAAAAAQAA AJAAAAACAAAAmAAAAAMAAAC8AAAABAAAAMgAAAAFAAAA1AAAAAYAAADgAAAABwAAAOwAAAAIAAAA /AAAAAkAAAAIAQAAEgAAABQBAAALAAAAMAEAAAwAAAA8AQAADQAAAEgBAAAOAAAAVAEAAA8AAABc AQAAEAAAAGQBAAATAAAAbAEAAAIAAADkBAAAHgAAABsAAABFbWFpbDoganBwLWV4cG9ydEB0LW9u bGluZQAAHgAAAAEAAAAAbWFpHgAAAAQAAABqcHAAHgAAAAEAAAAAcHAAHgAAAAEAAAAAcHAAHgAA AAcAAABOb3JtYWwAah4AAAAEAAAAanBwAB4AAAADAAAAMjAAAB4AAAAUAAAATWljcm9zb2Z0IFdv cmQgMTAuMABAAAAAACoqQC3TwwFAAAAAAB4Cf2DCwwFAAAAAABioz6jUwwEDAAAAAQAAAAMAAACj AQAAAwAAAFYKAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAABQECAAAA AAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuSAEA AAQBAAAMAAAAAQAAAGgAAAAPAAAAcAAAAAUAAAB8AAAABgAAAIQAAAARAAAAjAAAABcAAACUAAAA CwAAAJwAAAAQAAAApAAAABMAAACsAAAAFgAAALQAAAANAAAAvAAAAAwAAADjAAAAAgAAAOQEAAAe AAAAAQAAAAAAbwADAAAAFgAAAAMAAAAGAAAAAwAAAPMLAAADAAAAQQoKAAsAAAAAAAAACwAAAAAA AAALAAAAAAAAAAsAAAAAAAAAHhAAAAEAAAAbAAAARW1haWw6IGpwcC1leHBvcnRAdC1vbmxpbmUA DBAAAAIAAAAeAAAABgAAAFRpdGVsAAMAAAABAAAAAAAAWAIAAAMAAAAAAAAAIAAAAAEAAAA4AAAA AgAAAEAAAAABAAAAAgAAAAwAAABfUElEX0hMSU5LUwACAAAA5AQAAEEAAAAQAgAAHgAAAAMAAAAH AHAAAwAAAAwAAAADAAAAAAAAAAMAAAAFAAAAHwAAABoAAABtAGEAaQBsAHQAbwA6AGoAcABwAGUA YwBvAEAAdAAtAG8AbgBsAGkAbgBlAC4AZABlAAAAHwAAAAEAAAAAAAAAAwAAAB0AAwADAAAACQAA AAMAAAAAAAAAAwAAAAUAAAAfAAAAFgAAAGgAdAB0AHAAOgAvAC8AdwB3AHcALgBuAC0AYgBvAG8A awAuAGQAZQAvAAAAHwAAAAEAAAAAAAAAAwAAADEAMAADAAAABgAAAAMAAAAAAAAAAwAAAAUAAAAf AAAAGwAAAGgAdAB0AHAAOgAvAC8AdwB3AHcALgBwAGMAbQBvAG4AaQB0AG8AcgBlAC4AYwBvAG0A LwAAAAAAHwAAAAEAAAAAAAAAAwAAAAcAcgADAAAAAwAAAAMAAAAAAAAAAwAAAAUAAAAfAAAAGgAA AG0AYQBpAGwAdABvADoAagBwAHAAZQBjAG8AQAB0AC8AbwBuAGwAaQBuAGUALgBkAGUAAAAfAAAA AQAAAAAAAAADAAAAQwB0AAMAAAAAAAAAAwAAAAAAAAADAAAABQAAAB8AAAAeAAAAbQBhAGkAbAB0 AG8AOgBqAHAAcAAtAGUAeABwAG8AcgB0AEAAdAAtAG8AbgBsAGkAbgBlAC4AZABlAAAAHwAAAAEA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUA AAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAA ABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAACAAAAAhAAAA IgAAACMAAAAkAAAAJQAAACYAAAAnAAAAKAAAACkAAAAqAAAAKwAAACwAAAAtAAAALgAAAC8AAAAw AAAAMQAAADIAAAAzAAAANAAAADUAAAA2AAAANwAAADgAAAA5AAAAOgAAADsAAAA8AAAAPQAAAD4A AAA/AAAAQAAAAP7///9CAAAAQwAAAEQAAABFAAAARgAAAEcAAABIAAAASQAAAEoAAABLAAAATAAA AE0AAABOAAAATwAAAP7///9RAAAAUgAAAFMAAABUAAAAVQAAAFYAAABXAAAAWAAAAFkAAABaAAAA WwAAAFwAAABdAAAAXgAAAF8AAABgAAAAYQAAAGIAAABjAAAAZAAAAGUAAABmAAAAZwAAAGgAAABp AAAAagAAAGsAAABsAAAAbQAAAG4AAABvAAAAcAAAAHEAAAByAAAA/v///3QAAAB1AAAAdgAAAHcA AAB4AAAAeQAAAHoAAAD+////fAAAAH0AAAB+AAAAfwAAAIAAAACBAAAAggAAAP7////9/////f// /4YAAAD+/////v////7///////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUB//////////8D AAAABgkCAAAAAADAAAAAAAAARgAAAAAAAAAAAAAAANCRNd+o1MMBiAAAAIAAAAAAAAAARABhAHQA YQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAoAAgH///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAA aRwAAAAAAAAxAFQAYQBiAGwAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAADgACAQEAAAAGAAAA/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAFAAAAAvRAAAAAAAAFcAbwByAGQARABvAGMAdQBtAGUAbgB0AAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAIBAgAAAAUAAAD/////AAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADSAAAAAAAAABQBTAHUAbQBtAGEAcgB5AEkAbgBm AG8AcgBtAGEAdABpAG8AbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAgH///////////// //8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzAAAAABAAAAAAAAAFAEQAbwBj AHUAbQBlAG4AdABTAHUAbQBtAGEAcgB5AEkAbgBmAG8AcgBtAGEAdABpAG8AbgAAAAAAAAAAAAAA OAACAQQAAAD//////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAA EAAAAAAAAAEAQwBvAG0AcABPAGIAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAASAAIA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAGoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAA/v////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////wEA/v8DCgAA/////wYJAgAAAAAAwAAA AAAAAEYYAAAATWljcm9zb2Z0IFdvcmQtRG9rdW1lbnQACgAAAE1TV29yZERvYwAQAAAAV29yZC5E b2N1bWVudC44APQ5snEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA ----_mabry_41ce5c82170e41fb76b3176e-- From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 04:47:41 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2DFA16A4CE; Wed, 7 Jan 2004 04:47:41 -0800 (PST) Received: from nitroba.com (ip-64-7-15-234.dsl.bos.megapath.net [64.7.15.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8233243D58; Wed, 7 Jan 2004 04:47:39 -0800 (PST) (envelope-from simsong@lcs.mit.edu) Received: from e3 (KITCHEN.NITROBA.COM [192.168.1.9]) by nitroba.com (8.12.10/8.12.10) with SMTP id i07Ckm0B083061; Wed, 7 Jan 2004 07:47:38 -0500 (EST) (envelope-from simsong@lcs.mit.edu) Message-ID: <09bc01c3d51c$5e397410$0901a8c0@e3> From: "Simson Garfinkel" To: "Bruce Evans" , "Simson L. Garfinkel" References: <200401070158.i071w1t3032401@www.freebsd.org> <20040107184121.Q7587@gamplex.bde.org> Date: Wed, 7 Jan 2004 07:37:43 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: freebsd-bugs@freebsd.org cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 12:47:41 -0000 That's interesting. Thanks for the info. I guess something about the 5.2-RC2 cvsup process or "make installworld" and "make installkernel" didn't update them properly. ----- Original Message ----- From: "Bruce Evans" To: "Simson L. Garfinkel" Cc: ; Sent: Wednesday, January 07, 2004 2:46 AM Subject: Re: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h > On Tue, 6 Jan 2004, Simson L. Garfinkel wrote: > > > >Synopsis: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h > > Your header files are out of date. doesn't exist in > FreeBSD. > > > >Description: > > building etherreal from ports doesn't work because there are conflicting definitions for vm_pindex_t: > > ... > > In file included from host/hr_storage.c:36: > > /usr/include/machine/types.h:57: error: conflicting types for `vm_pindex_t' > > /usr/include/sys/types.h:253: error: previous declaration of `vm_pindex_t' > > *** Error code 1 > > or the port seems to be out of date too. Including the > nonexistent file shouldn't be attempted. > > Bruce > > From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 04:50:25 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CADE16A4CE for ; Wed, 7 Jan 2004 04:50:25 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4559743D3F for ; Wed, 7 Jan 2004 04:50:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i07CoMFR031701 for ; Wed, 7 Jan 2004 04:50:22 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i07CoMbK031700; Wed, 7 Jan 2004 04:50:22 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Jan 2004 04:50:22 -0800 (PST) Message-Id: <200401071250.i07CoMbK031700@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Simson Garfinkel" Subject: Re: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Simson Garfinkel List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 12:50:25 -0000 The following reply was made to PR kern/60997; it has been noted by GNATS. From: "Simson Garfinkel" To: "Bruce Evans" , "Simson L. Garfinkel" Cc: , Subject: Re: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h Date: Wed, 7 Jan 2004 07:37:43 -0500 That's interesting. Thanks for the info. I guess something about the 5.2-RC2 cvsup process or "make installworld" and "make installkernel" didn't update them properly. ----- Original Message ----- From: "Bruce Evans" To: "Simson L. Garfinkel" Cc: ; Sent: Wednesday, January 07, 2004 2:46 AM Subject: Re: kern/60997: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h > On Tue, 6 Jan 2004, Simson L. Garfinkel wrote: > > > >Synopsis: vm_pindex_t has conflicting definitions in machine/types.h and sys/types.h > > Your header files are out of date. doesn't exist in > FreeBSD. > > > >Description: > > building etherreal from ports doesn't work because there are conflicting definitions for vm_pindex_t: > > ... > > In file included from host/hr_storage.c:36: > > /usr/include/machine/types.h:57: error: conflicting types for `vm_pindex_t' > > /usr/include/sys/types.h:253: error: previous declaration of `vm_pindex_t' > > *** Error code 1 > > or the port seems to be out of date too. Including the > nonexistent file shouldn't be attempted. > > Bruce > > From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 07:30:42 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2E2516A4CE for ; Wed, 7 Jan 2004 07:30:42 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5007943D58 for ; Wed, 7 Jan 2004 07:30:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i07FUMFR016572 for ; Wed, 7 Jan 2004 07:30:22 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i07FUMJe016571; Wed, 7 Jan 2004 07:30:22 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 7 Jan 2004 07:30:22 -0800 (PST) Resent-Message-Id: <200401071530.i07FUMJe016571@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oleg Bulyzhin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11D5C16A4D0; Wed, 7 Jan 2004 07:26:17 -0800 (PST) Received: from lath.rinet.ru (lath.rinet.ru [195.54.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0DD343D2D; Wed, 7 Jan 2004 07:26:13 -0800 (PST) (envelope-from oleg@lath.rinet.ru) Received: from lath.rinet.ru (localhost [127.0.0.1]) by lath.rinet.ru (8.12.9p2/8.12.9) with ESMTP id i07FQB3O023444 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 7 Jan 2004 18:26:11 +0300 (MSK) (envelope-from oleg@lath.rinet.ru) Received: (from oleg@localhost) by lath.rinet.ru (8.12.9p2/8.12.9/Submit) id i07FQB7S023443; Wed, 7 Jan 2004 18:26:11 +0300 (MSK) (envelope-from oleg) Message-Id: <200401071526.i07FQB7S023443@lath.rinet.ru> Date: Wed, 7 Jan 2004 18:26:11 +0300 (MSK) From: Oleg Bulyzhin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: gshapiro@FreeBSD.org Subject: bin/61019: [PATCH] wrong tokenization of unstructured data X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Oleg Bulyzhin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 15:30:43 -0000 >Number: 61019 >Category: bin >Synopsis: [PATCH] wrong tokenization of unstructured data >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jan 07 07:30:21 PST 2004 >Closed-Date: >Last-Modified: >Originator: Oleg Bulyzhin >Release: FreeBSD 4.9-RELEASE-p1 i386 >Organization: Cronyx Plus LLC >Environment: System: FreeBSD lath.rinet.ru 4.9-RELEASE-p1 FreeBSD 4.9-RELEASE-p1 #1: Thu Dec 11 14:25:00 MSK 2003 root@lath.rinet.ru:/lh/obj/lh/src/sys/lath i386 All sendmail versions are affected (8.12.* 8.11.* 8.9.*) >Description: Sendmail use prescan() function for data tokenization. This function use some implicit checks and convertions (like checks for unbalanced braces, angle braces etc). When prescan() used for 'unstructured' data tokenization (mail headers for example) global variable SuprErrs set to 'true' and all those error messages just skipped but 'syntax enforcing' still works (unbalanced '>' stripping for example). Due to such prescan() behaviour certain symbols are 'invisible' for sendmail. This can lead to wrong mail filtering (and maybe other ugly things). >How-To-Repeat: Add following in sendmail.cf: Ksyslog syslog HSubject: $>+log_subject Slog_subject R$* $: $(syslog "Subject: " $1 $) restart sendmail do the following: root@lath# echo | mail -s '-->bug<--' postmaster@localhost root@lath# grep "Subject:" /var/log/maillog Jan 7 17:59:19 lath sm-mta[23337]: i07ExJ3O023337: Subject: --bug<--> root@lath# Subject '-->bug<--' was converted to '--bug<-->': '>' symbol was unbalanced and prescan() stripped it. Then prescan() found unbalanced '<' and added extra '>' symbol. >Fix: Well, to my mind there is design flow: there should be 2 different functions: one for tokenization only and other for syntax checks. Though my sendmail knowledge is not deep enough - maybe i'm wrong. Anyway here is little (without altering whole sendmail sources) patch for sendmail 8.12.9p2: --- parseaddr.c.orig Thu Sep 25 08:53:37 2003 +++ parseaddr.c Wed Dec 31 17:49:47 2003 @@ -721,6 +721,8 @@ c = (*p++) & 0x00ff; if (c == '\0') { + if (SuprErrs) break; + /* diagnose and patch up bad syntax */ if (state == QST) { @@ -748,7 +750,7 @@ break; /* special case for better error management */ - if (delim == ',' && !route_syntax) + if (delim == ',' && !route_syntax && !SuprErrs) { usrerr("553 Unbalanced '<'"); c = '>'; @@ -824,7 +826,7 @@ if (anglecnt <= 0) { usrerr("553 Unbalanced '>'"); - c = NOCHAR; + if (!SuprErrs) c = NOCHAR; } else anglecnt--; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 11:29:06 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6A0C16A4D8; Wed, 7 Jan 2004 11:29:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09BB643D66; Wed, 7 Jan 2004 11:29:03 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from freefall.freebsd.org (anholt@localhost [127.0.0.1]) i07JT3FR042546; Wed, 7 Jan 2004 11:29:03 -0800 (PST) (envelope-from anholt@freefall.freebsd.org) Received: (from anholt@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i07JT3Tt042542; Wed, 7 Jan 2004 11:29:03 -0800 (PST) (envelope-from anholt) Date: Wed, 7 Jan 2004 11:29:03 -0800 (PST) From: Eric Anholt Message-Id: <200401071929.i07JT3Tt042542@freefall.freebsd.org> To: melkov@comptek.ru, anholt@FreeBSD.org, freebsd-bugs@FreeBSD.org, anholt@FreeBSD.org Subject: Re: bin/60809: ftpd should not allow anonymous users to delete files [patch] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 19:29:06 -0000 Synopsis: ftpd should not allow anonymous users to delete files [patch] State-Changed-From-To: open->patched State-Changed-By: anholt State-Changed-When: Wed Jan 7 11:28:40 PST 2004 State-Changed-Why: Committed to -current, thanks! Responsible-Changed-From-To: freebsd-bugs->anholt Responsible-Changed-By: anholt Responsible-Changed-When: Wed Jan 7 11:28:40 PST 2004 Responsible-Changed-Why: Committed to -current, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=60809 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 11:35:38 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D13216A4CE; Wed, 7 Jan 2004 11:35:38 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D55243D5E; Wed, 7 Jan 2004 11:35:37 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) i07JZbFR042979; Wed, 7 Jan 2004 11:35:37 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i07JZbfI042975; Wed, 7 Jan 2004 11:35:37 -0800 (PST) (envelope-from ceri) Date: Wed, 7 Jan 2004 11:35:37 -0800 (PST) From: Ceri Davies Message-Id: <200401071935.i07JZbfI042975@freefall.freebsd.org> To: ceri@FreeBSD.org, freebsd-bugs@FreeBSD.org, gshapiro@FreeBSD.org Subject: Re: bin/61019: [PATCH] wrong tokenization of unstructured data X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 19:35:38 -0000 Synopsis: [PATCH] wrong tokenization of unstructured data Responsible-Changed-From-To: freebsd-bugs->gshapiro Responsible-Changed-By: ceri Responsible-Changed-When: Wed Jan 7 11:35:14 PST 2004 Responsible-Changed-Why: Over to Mr. sendmail. http://www.freebsd.org/cgi/query-pr.cgi?pr=61019 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 11:50:17 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F170016A4CE for ; Wed, 7 Jan 2004 11:50:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A34CD43D53 for ; Wed, 7 Jan 2004 11:50:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i07JoEFR043669 for ; Wed, 7 Jan 2004 11:50:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i07JoEBe043668; Wed, 7 Jan 2004 11:50:14 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 7 Jan 2004 11:50:14 -0800 (PST) Resent-Message-Id: <200401071950.i07JoEBe043668@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Clayton Rollins Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68A3516A4CE for ; Wed, 7 Jan 2004 11:48:17 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6949243D5C for ; Wed, 7 Jan 2004 11:48:16 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i07JmGdL090734 for ; Wed, 7 Jan 2004 11:48:16 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i07JmGgL090733; Wed, 7 Jan 2004 11:48:16 -0800 (PST) (envelope-from nobody) Message-Id: <200401071948.i07JmGgL090733@www.freebsd.org> Date: Wed, 7 Jan 2004 11:48:16 -0800 (PST) From: Clayton Rollins To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: misc/61034: [maintainer-update] [patch]; port net/gtk-gnutella update X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 19:50:18 -0000 >Number: 61034 >Category: misc >Synopsis: [maintainer-update] [patch]; port net/gtk-gnutella update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jan 07 11:50:14 PST 2004 >Closed-Date: >Last-Modified: >Originator: Clayton Rollins >Release: FreeBSD 4.9-RC1 >Organization: N/A >Environment: FreeBSD riot.1138.ws 4.9-RC FreeBSD 4.9-RC #1: Sun Oct 12 13:57:06 NUT 2003 crollins@riot.1138.ws:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: A new version of gtk-gnutella has been released. The patch below brings the port directory up-to-date. Aside from updating, this patch fixes a few problems with the previous Makefile. 1. USE_GMAKE is eliminated. The program now handles *BSD style make. 2. Dependency on pango re-added, but only to the WITH_GTK2 build, as proper. (thanks, pav, for noting that the dependency doesn't exist with gtk1.) 3. Fixed and added problems with a 'portablility' target, which was originally suggested to be the default way of compiling by another user. The name is somewhat misleading as it does nothing to make the source code portable, just the executable. (Basically, it uses PATH at run-time at a cost to performance.) While I still didn't make it the default, I wouldn't argue too much if someone wanted to change it. 4. WITH_REMOTE_INTERFACE was eliminated, as this is configurable from the gui now. Patch made available at http://216.19.22.118/gtk-g.0.93.2.udiff to avoid possible mangling by the web interface. Regards, Clayton >How-To-Repeat: N/A >Fix: See patch at http://216.19.22.118/gtk-g.0.93.2.udiff >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 11:59:11 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E48216A4CE; Wed, 7 Jan 2004 11:59:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9808643D45; Wed, 7 Jan 2004 11:59:10 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from freefall.freebsd.org (simon@localhost [127.0.0.1]) i07JxAFR044410; Wed, 7 Jan 2004 11:59:10 -0800 (PST) (envelope-from simon@freefall.freebsd.org) Received: (from simon@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i07JxAfF044406; Wed, 7 Jan 2004 11:59:10 -0800 (PST) (envelope-from simon) Date: Wed, 7 Jan 2004 11:59:10 -0800 (PST) From: "Simon L. Nielsen" Message-Id: <200401071959.i07JxAfF044406@freefall.freebsd.org> To: simon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/61034: [maintainer-update] [patch]; port net/gtk-gnutella update X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 19:59:11 -0000 Synopsis: [maintainer-update] [patch]; port net/gtk-gnutella update Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: simon Responsible-Changed-When: Wed Jan 7 11:58:45 PST 2004 Responsible-Changed-Why: Reassign misfiled ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=61034 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 12:15:56 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4AE616A4CE for ; Wed, 7 Jan 2004 12:15:56 -0800 (PST) Received: from hal.kabsi.at (charme.kabsi.at [195.202.128.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id A18CE43D49 for ; Wed, 7 Jan 2004 12:15:54 -0800 (PST) (envelope-from mario88@kabsi.at) Received: from h062040159111.bad.cm.kabsi.at (h062040159111.bad.cm.kabsi.at [62.40.159.111]) by hal.kabsi.at (8.11.1/) with ESMTP id i07KFq90002586109 for ; Wed, 7 Jan 2004 21:15:52 +0100 (CET) From: Mario Sassmann To: freebsd-bugs@freebsd.org Date: Wed, 7 Jan 2004 21:15:54 +0100 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200401072114.58691.mario88@kabsi.at> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: buildworld RELENG_5_1 on 4.9 fails X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2004 20:15:57 -0000 >I tryed to update to RELENG_5_1 on RELENG_4_9, but make buildworld failed >(machine i386) > >cc -fpic -DPIC -O -pipe -march=pentium3 -DPTHREAD_KERNEL >-I/usr/src/lib/libpthread/../libc/include -I/usr/src/lib/libpthread/thread >-I/usr/src/lib/libpthread/../../include >-I/usr/src/lib/libpthread/arch/i386/include -I/usr/src/lib/libpthread/sys >-I/usr/src/lib/libpthread/../../libexec/rtld-elf -fno-builtin -D_LOCK_DEBUG >-D_PTHREADS_INVARIANTS -Wall -c /usr/src/lib/libpthread/sys/lock.c -o >lock.So >building shared library libkse.so.1 >thr_libc.So: In function `sigaction': >thr_libc.So(.text+0x54): multiple definition of `_sigaction' >thr_sigaction.So(.text+0x0): first defined here >thr_libc.So: In function `sigprocmask': >thr_libc.So(.text+0x34): multiple definition of `_sigprocmask' >thr_sigprocmask.So(.text+0x0): first defined here >*** Error code 1 > >Stop in /usr/src/lib/libpthread. >*** Error code 1 > >Stop in /usr/src/lib. >*** Error code 1 > >Stop in /usr/src. >*** Error code 1 > >Stop in /usr/src. >*** Error code 1 > >Stop in /usr/src. >*** Error code 1 > >Stop in /usr/src. Someone sent me a mail referable this problem. But I've lost my Mail-Directory =(( Unfortunately, now I'm not able to answer. Please could the one send a mail to me again? From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 19:33:53 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44D5016A4CE; Wed, 7 Jan 2004 19:33:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B80E43D45; Wed, 7 Jan 2004 19:33:52 -0800 (PST) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i083XqFR092615; Wed, 7 Jan 2004 19:33:52 -0800 (PST) (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i083XqTk092611; Wed, 7 Jan 2004 19:33:52 -0800 (PST) (envelope-from linimon) Date: Wed, 7 Jan 2004 19:33:52 -0800 (PST) From: Mark Linimon Message-Id: <200401080333.i083XqTk092611@freefall.freebsd.org> To: linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/61047: devfs_domount doesn't applyset X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 03:33:53 -0000 Synopsis: devfs_domount doesn't applyset Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jan 7 19:33:16 PST 2004 Responsible-Changed-Why: Try to rescue this one from pending (looks like there were editing problems). http://www.freebsd.org/cgi/query-pr.cgi?pr=61047 From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 7 22:10:16 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CEDA16A4CE for ; Wed, 7 Jan 2004 22:10:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED7AD43D45 for ; Wed, 7 Jan 2004 22:10:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i086ADFR006884 for ; Wed, 7 Jan 2004 22:10:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i086ADf3006883; Wed, 7 Jan 2004 22:10:13 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 7 Jan 2004 22:10:13 -0800 (PST) Resent-Message-Id: <200401080610.i086ADf3006883@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Phill Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F25516A4CE for ; Wed, 7 Jan 2004 22:02:31 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C11D343D31 for ; Wed, 7 Jan 2004 22:02:30 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i0862UdL048386 for ; Wed, 7 Jan 2004 22:02:30 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i0862UCq048385; Wed, 7 Jan 2004 22:02:30 -0800 (PST) (envelope-from nobody) Message-Id: <200401080602.i0862UCq048385@www.freebsd.org> Date: Wed, 7 Jan 2004 22:02:30 -0800 (PST) From: Phill To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: kern/61055: kernel panics boot + sysinstall X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 06:10:16 -0000 >Number: 61055 >Category: kern >Synopsis: kernel panics boot + sysinstall >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jan 07 22:10:13 PST 2004 >Closed-Date: >Last-Modified: >Originator: Phill >Release: 5.1r >Organization: Personal MIS >Environment: Can't boot completely >Description: A few things going on here... 1. When installing from the 5.1 cd's kernel configuration never shows up. 2. When trying to configure the network if w/sysinstall whenver I choose DHCP, I get a kernel panic. I can configure w/out dhcp 3. When booting kenel panics again trying to bring the eithernet interface up 4. After booting from the CD to do a fix it, kernel panics when trying to write to the hard disk. Was able to successfully boot once w/out configuring the network if. But I went straight to setting it up using sysinstall and static IP. And that was it. Specs: 3com 3c905 NIC, 60GB Maxtor HD >How-To-Repeat: I haven't tried reinstalling from scratch yet, every boot either from CD has the same problem and and installed system seems unreachable. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 01:43:29 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE88716A4D0; Thu, 8 Jan 2004 01:43:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A30743D2F; Thu, 8 Jan 2004 01:43:29 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) i089hSFR025834; Thu, 8 Jan 2004 01:43:28 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i089hS7t025830; Thu, 8 Jan 2004 01:43:28 -0800 (PST) (envelope-from dwmalone) Date: Thu, 8 Jan 2004 01:43:28 -0800 (PST) From: David Malone Message-Id: <200401080943.i089hS7t025830@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: bin/52190: [Patch] decode more syscalls in truss X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 09:43:30 -0000 Synopsis: [Patch] decode more syscalls in truss Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Jan 8 01:43:07 PST 2004 Responsible-Changed-Why: I'll try to have a look at this, unless someone beats me to it. http://www.freebsd.org/cgi/query-pr.cgi?pr=52190 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 02:11:32 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D23EB16A4CE; Thu, 8 Jan 2004 02:11:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2ACD043D49; Thu, 8 Jan 2004 02:11:32 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) i08ABWFR030047; Thu, 8 Jan 2004 02:11:32 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i08ABWMj030043; Thu, 8 Jan 2004 02:11:32 -0800 (PST) (envelope-from dwmalone) Date: Thu, 8 Jan 2004 02:11:32 -0800 (PST) From: David Malone Message-Id: <200401081011.i08ABWMj030043@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, ume@FreeBSD.org Subject: Re: kern/22868: getsockname may return an incorrect address X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 10:11:32 -0000 Synopsis: getsockname may return an incorrect address Responsible-Changed-From-To: freebsd-bugs->ume Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Jan 8 02:10:55 PST 2004 Responsible-Changed-Why: UMEMOTO-san should be able to merge the fix from KAME. http://www.freebsd.org/cgi/query-pr.cgi?pr=22868 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 03:00:40 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF33916A4D2 for ; Thu, 8 Jan 2004 03:00:40 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 901C843D5C for ; Thu, 8 Jan 2004 03:00:38 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i08B0cFR032078 for ; Thu, 8 Jan 2004 03:00:38 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i08B0cFD032075; Thu, 8 Jan 2004 03:00:38 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Jan 2004 03:00:38 -0800 (PST) Message-Id: <200401081100.i08B0cFD032075@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Richard Wendland Subject: Re: kern/60889: 5.2RC2 - zero IP id change not effective for TCP, detrimental to security/privacy and maybe interoperation X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Richard Wendland List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 11:00:41 -0000 The following reply was made to PR kern/60889; it has been noted by GNATS. From: Richard Wendland To: freebsd-gnats-submit@FreeBSD.org, richard@wendland.org.uk Cc: Subject: Re: kern/60889: 5.2RC2 - zero IP id change not effective for TCP, detrimental to security/privacy and maybe interoperation Date: Thu, 8 Jan 2004 10:59:32 +0000 (GMT) I have identified a further problem with this change: This change causes ip_id for non-DF to be output in native byte order in ip_output.c. Unfortunately ip_id is still output in Network Byte Order in ip_mroute.c and raw_ip.c, so this change risks little-endian machines emitting the same IP fragmentation id at about the same time from these different modules (after another 255 packets), rather than after the usual 64k cycle; creating a small but real risk of fragment re-assembly errors. Richard -- Richard Wendland richard@wendland.org.uk From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 05:10:22 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 159E016A4CE for ; Thu, 8 Jan 2004 05:10:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F131C43D46 for ; Thu, 8 Jan 2004 05:10:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i08DAKFR053478 for ; Thu, 8 Jan 2004 05:10:20 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i08DAKfx053477; Thu, 8 Jan 2004 05:10:20 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Jan 2004 05:10:20 -0800 (PST) Message-Id: <200401081310.i08DAKfx053477@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Simon L. Nielsen" Subject: Re: kern/61055: kernel panics boot + sysinstall X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Simon L. Nielsen" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 13:10:22 -0000 The following reply was made to PR kern/61055; it has been noted by GNATS. From: "Simon L. Nielsen" To: Phill Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/61055: kernel panics boot + sysinstall Date: Thu, 8 Jan 2004 14:03:28 +0100 --M38YqGLZlgb6RLPS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2004.01.07 22:02:30 -0800, Phill wrote: > A few things going on here... >=20 > 1. When installing from the 5.1 cd's kernel configuration never shows up. FreeBSD 5 does not have an interactive kernel configuration like 4.X has. Instead it uses "device hints", which are described in the Handbook. In most cases it should not be needed to set special hardware driver options. > 2. When trying to configure the network if w/sysinstall whenver I > choose DHCP, I get a kernel panic. I can configure w/out dhcp > 3. When booting kenel panics again trying to bring the eithernet interfac= e up > 4. After booting from the CD to do a fix it, kernel panics when trying > to write to the hard disk. > > Specs: 3com 3c905 NIC, 60GB Maxtor HD It sounds like there is a bug in the driver for your network interface. I have a 3Com 3c905B-TX, and a 80GB Maxtor and both works fine under FreeBSD 5.2RC. Could you please try 5.2RC2 (or the upcomming 5.2-RELEASE) and see if the problem still exists? --=20 Simon L. Nielsen FreeBSD Documentation Team --M38YqGLZlgb6RLPS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE//VUfh9pcDSc1mlERArfiAKClAmq/jg+eD/OohbVoGSWDB7MdKACeLDXc KpnxCmKqliQ2DDi6emVGB4o= =tC4E -----END PGP SIGNATURE----- --M38YqGLZlgb6RLPS-- From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 09:01:31 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B03F16A4CE for ; Thu, 8 Jan 2004 09:01:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7D8543D64 for ; Thu, 8 Jan 2004 09:00:32 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i08H0WFR058658 for ; Thu, 8 Jan 2004 09:00:32 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i08H0WOT058657; Thu, 8 Jan 2004 09:00:32 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 8 Jan 2004 09:00:32 -0800 (PST) Resent-Message-Id: <200401081700.i08H0WOT058657@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bjoern Groenvall Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3713016A4CE for ; Thu, 8 Jan 2004 08:57:54 -0800 (PST) Received: from manian.sics.se (manian.sics.se [193.10.66.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18CF843D41 for ; Thu, 8 Jan 2004 08:57:51 -0800 (PST) (envelope-from bg@manian.sics.se) Received: from manian.sics.se (localhost [127.0.0.1]) by manian.sics.se (8.12.10/8.12.10) with ESMTP id i08Gvxet020047; Thu, 8 Jan 2004 17:57:59 +0100 (CET) (envelope-from bg@manian.sics.se) Received: (from bg@localhost) by manian.sics.se (8.12.10/8.12.10/Submit) id i08Gvx5t020046; Thu, 8 Jan 2004 17:57:59 +0100 (CET) (envelope-from bg) Message-Id: <200401081657.i08Gvx5t020046@manian.sics.se> Date: Thu, 8 Jan 2004 17:57:59 +0100 (CET) From: Bjoern Groenvall To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: bg@sics.se Subject: bin/61084: nfsd sometimes exits prematurely during port-scan X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bjoern Groenvall List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 17:01:31 -0000 >Number: 61084 >Category: bin >Synopsis: nfsd sometimes exits prematurely during port-scan >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jan 08 09:00:32 PST 2004 >Closed-Date: >Last-Modified: >Originator: Bjoern Groenvall >Release: FreeBSD 5.2-RC i386 >Organization: SICS >Environment: System: FreeBSD dim.sics.se 5.2-RC FreeBSD 5.2-RC #1: Fri Dec 19 16:32:35 CET 2003 root@dim.sics.se:/usr/src/sys/i386/compile/DIM i386 >Description: When an NFS server is port-scanned nfsd sometimes exits. This has happened 3 times the last few weeks. Nfsd has been written to exit when accept(2) fails. Unfortunately accept can sometimes make a "normal" return with errno ECONNABORTED and in this case nfsd exits prematurely (see below). Dec 22 16:25:59 dim kernel: Limiting closed port RST response from 363 to 200 packets/sec Dec 22 16:25:59 dim nfsd[417]: accept failed: Software caused connection abort Dec 22 16:26:00 dim kernel: Limiting closed port RST response from 215 to 200 packets/sec Dec 28 08:26:43 dim kernel: Limiting closed port RST response from 325 to 200 packets/sec Dec 28 08:26:43 dim nfsd[36538]: accept failed: Software caused connection abort Dec 28 08:26:45 dim kernel: Limiting closed port RST response from 431 to 200 packets/sec Jan 7 00:37:12 dim kernel: Limiting closed port RST response from 305 to 200 packets/sec Jan 7 00:37:12 dim nfsd[89133]: accept failed: Software caused connection abort Jan 7 00:37:14 dim kernel: Limiting closed port RST response from 371 to 200 packets/sec >How-To-Repeat: Unknown. Perhaps possible using a port-scan program of some sort. >Fix: This is a sample fix that also handles rare "normal" returns with errno EINTR. --- nfsd.c.orig Thu Jul 25 08:18:22 2002 +++ nfsd.c Wed Jan 7 18:02:18 2004 @@ -658,6 +658,8 @@ if (select(maxsock + 1, &ready, NULL, NULL, NULL) < 1) { syslog(LOG_ERR, "select failed: %m"); + if (errno == EINTR) + continue; nfsd_exit(1); } } @@ -668,6 +670,9 @@ if ((msgsock = accept(tcpsock, (struct sockaddr *)&inetpeer, &len)) < 0) { syslog(LOG_ERR, "accept failed: %m"); + if (errno == ECONNABORTED || + errno == EINTR) + continue; nfsd_exit(1); } memset(inetpeer.sin_zero, 0, @@ -688,6 +693,9 @@ &len)) < 0) { syslog(LOG_ERR, "accept failed: %m"); + if (errno == ECONNABORTED || + errno == EINTR) + continue; nfsd_exit(1); } if (setsockopt(msgsock, SOL_SOCKET, >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 09:01:36 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41EFF16A4CE for ; Thu, 8 Jan 2004 09:01:36 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 473D043D7C for ; Thu, 8 Jan 2004 09:00:33 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i08H0WFR058671 for ; Thu, 8 Jan 2004 09:00:32 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i08H0Wg8058670; Thu, 8 Jan 2004 09:00:32 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 8 Jan 2004 09:00:32 -0800 (PST) Resent-Message-Id: <200401081700.i08H0Wg8058670@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mourshad Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D46B16A4D0 for ; Thu, 8 Jan 2004 08:57:56 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55FE043D3F for ; Thu, 8 Jan 2004 08:57:55 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i08GvtdL090059 for ; Thu, 8 Jan 2004 08:57:55 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i08Gvtti090058; Thu, 8 Jan 2004 08:57:55 -0800 (PST) (envelope-from nobody) Message-Id: <200401081657.i08Gvtti090058@www.freebsd.org> Date: Thu, 8 Jan 2004 08:57:55 -0800 (PST) From: Mourshad To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: misc/61085: Error while doing the installation. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 17:01:36 -0000 >Number: 61085 >Category: misc >Synopsis: Error while doing the installation. >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jan 08 09:00:32 PST 2004 >Closed-Date: >Last-Modified: >Originator: Mourshad >Release: >Organization: Caltrans >Environment: Dell Computer >Description: When i am trying to install FBSD 5.1, it gives me the following msg: "Unable to transfer the bin distribution from acd0c." >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 09:20:24 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 163A816A4CE for ; Thu, 8 Jan 2004 09:20:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E0FA43D45 for ; Thu, 8 Jan 2004 09:20:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i08HKDFR062492 for ; Thu, 8 Jan 2004 09:20:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i08HKDOM062491; Thu, 8 Jan 2004 09:20:13 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Jan 2004 09:20:13 -0800 (PST) Message-Id: <200401081720.i08HKDOM062491@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jason Bacon Subject: Re: kern/60699: DVD Multidrive udma mode autosensed wrong X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jason Bacon List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 17:20:24 -0000 The following reply was made to PR kern/60699; it has been noted by GNATS. From: Jason Bacon To: freebsd-gnats-submit@FreeBSD.org, bacon@smithers.neuro.mcw.edu Cc: Subject: Re: kern/60699: DVD Multidrive udma mode autosensed wrong Date: Thu, 8 Jan 2004 11:19:07 -0600 I subsequently discovered that udma33 mode causes problems reading CDRs in both the CDROM and DVD Multidrive (although it works fine for reading and writing DVD RAMs) Hence, I have replaced: atacontrol mode 1 udma33 udma33 with atacontrol mode 1 wdma2 wdma2 Now everything works, and the change had no measurable impact on performance or system load. From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 10:01:12 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ECAD16A4D2 for ; Thu, 8 Jan 2004 10:01:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5F7F43D86 for ; Thu, 8 Jan 2004 10:00:33 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i08I0XFR063496 for ; Thu, 8 Jan 2004 10:00:33 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i08I0XuZ063495; Thu, 8 Jan 2004 10:00:33 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 8 Jan 2004 10:00:33 -0800 (PST) Resent-Message-Id: <200401081800.i08I0XuZ063495@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Colin Percival Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5570A16A4D0 for ; Thu, 8 Jan 2004 09:58:55 -0800 (PST) Received: from pd2mo3so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE49043D5A for ; Thu, 8 Jan 2004 09:58:49 -0800 (PST) (envelope-from cperciva@fafnir.daemonology.net) Received: from pd2mr2so.prod.shaw.ca (pd2mr2so-ser.prod.shaw.ca [10.0.141.109])2003))FreeBSD-gnats-submit@freebsd.org; Thu, 08 Jan 2004 10:52:55 -0700 (MST) Received: from pn2ml1so.prod.shaw.ca (pn2ml1so-qfe0.prod.shaw.ca [10.0.121.145]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0HR6003OGN071W@l-daemon> for FreeBSD-gnats-submit@freebsd.org; Thu, 08 Jan 2004 10:52:55 -0700 (MST) Received: from fafnir.daemonology.net ([24.87.233.42]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with SMTP id <0HR60013AN06L6@l-daemon> for FreeBSD-gnats-submit@freebsd.org; Thu, 08 Jan 2004 10:52:55 -0700 (MST) Received: (qmail 23838 invoked by uid 0); Thu, 08 Jan 2004 17:53:16 +0000 Message-Id: <20040108175316.23832.qmail@fafnir.daemonology.net> Date: Thu, 08 Jan 2004 17:53:16 +0000 From: Colin Percival To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/61087: wacky string constant merging in isdnd X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Colin Percival List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 18:01:12 -0000 >Number: 61087 >Category: bin >Synopsis: wacky string constant merging in isdnd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jan 08 10:00:33 PST 2004 >Closed-Date: >Last-Modified: >Originator: Colin Percival >Release: FreeBSD 5.2-RC i386 >Organization: >Environment: System: FreeBSD fafnir.daemonology.net 5.2-RC FreeBSD 5.2-RC #3: Sun Jan 4 16:13:57 GMT 2004 cperciva@fafnir.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: isdnd contains a build timestamp. It also contains the strings "1", "2", "3", ... , "32". If isdnd is built at 1-32 seconds past a minute, gcc will, very helpfully, merge the two constant strings. This is 1. A problem for FreeBSD Update, since this causes cascading differences, and 2. Rather astonishing behaviour. >How-To-Repeat: >Fix: Tell gcc not to merge the string constants in this particular case. --- isdnd.diff begins here --- Index: Makefile =================================================================== RCS file: /usr/cvsroot/src/usr.sbin/i4b/isdnd/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- usr.sbin/i4b/isdnd/Makefile 4 Apr 2003 17:49:14 -0000 1.12 +++ usr.sbin/i4b/isdnd/Makefile 8 Jan 2004 17:23:04 -0000 @@ -10,6 +10,10 @@ # compile debug support COPTS+= -DDEBUG +# avoid wacky merging of string constants from +# source code with compile-time timestamp +COPTS+= -fno-merge-constants + # enable rtprio usage COPTS+= -DUSE_RTPRIO --- isdnd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 14:28:23 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2709416A4CE; Thu, 8 Jan 2004 14:28:23 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AAF943D4C; Thu, 8 Jan 2004 14:28:22 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) i08MSLFR088215; Thu, 8 Jan 2004 14:28:21 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i08MSLka088211; Thu, 8 Jan 2004 14:28:21 -0800 (PST) (envelope-from dwmalone) Date: Thu, 8 Jan 2004 14:28:21 -0800 (PST) From: David Malone Message-Id: <200401082228.i08MSLka088211@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: bin/60806: inetd hangs on non-existent config files X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2004 22:28:23 -0000 Synopsis: inetd hangs on non-existent config files Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Jan 8 14:15:40 PST 2004 Responsible-Changed-Why: I'll take this PR as inetd is my problem. I think inetd is actually running and providing no services - I'd expect that if you create its config file and HUP it, it should continue happily. It isn't clear to me if this is sensible or not. I think that the patch, as it stands, would cause inetd to exit if HUPPed after its config file had been deleted, which is probably bad. Maybe a patch that checks for the existance of the config file at start-up? David. http://www.freebsd.org/cgi/query-pr.cgi?pr=60806 From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 16:50:24 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D95916A4CE for ; Thu, 8 Jan 2004 16:50:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7784543D39 for ; Thu, 8 Jan 2004 16:50:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i090oKFR099202 for ; Thu, 8 Jan 2004 16:50:20 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i090oKM9099201; Thu, 8 Jan 2004 16:50:20 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Jan 2004 16:50:20 -0800 (PST) Message-Id: <200401090050.i090oKM9099201@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Colin Percival Subject: Re: bin/61087: wacky string constant merging in isdnd X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Colin Percival List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2004 00:50:24 -0000 The following reply was made to PR bin/61087; it has been noted by GNATS. From: Colin Percival To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/61087: wacky string constant merging in isdnd Date: Fri, 09 Jan 2004 00:43:32 +0000 Oops, this isn't sufficient -- isdnmonitor needs a patch as well, any maybe other isdn binaries as well. I'll follow up with a complete patch later. Colin Percival From owner-freebsd-bugs@FreeBSD.ORG Thu Jan 8 20:50:22 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6447D16A4CE for ; Thu, 8 Jan 2004 20:50:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E9D443D48 for ; Thu, 8 Jan 2004 20:50:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i094oJFR018868 for ; Thu, 8 Jan 2004 20:50:19 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i094oJpS018867; Thu, 8 Jan 2004 20:50:19 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 8 Jan 2004 20:50:19 -0800 (PST) Resent-Message-Id: <200401090450.i094oJpS018867@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pavel Gubin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3352A16A4CE for ; Thu, 8 Jan 2004 20:40:56 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2676B43D3F for ; Thu, 8 Jan 2004 20:40:55 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id i094erdL042909 for ; Thu, 8 Jan 2004 20:40:53 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id i094er7J042908; Thu, 8 Jan 2004 20:40:53 -0800 (PST) (envelope-from nobody) Message-Id: <200401090440.i094er7J042908@www.freebsd.org> Date: Thu, 8 Jan 2004 20:40:53 -0800 (PST) From: Pavel Gubin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: kern/61109: bge on TYAN AMD762-based Thunder/Tiger passes only small packets X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2004 04:50:22 -0000 >Number: 61109 >Category: kern >Synopsis: bge on TYAN AMD762-based Thunder/Tiger passes only small packets >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jan 08 20:50:19 PST 2004 >Closed-Date: >Last-Modified: >Originator: Pavel Gubin >Release: 4.x >Organization: TUSUR >Environment: FreeBSD rainbow.ie.tusur.ru 4.9-RELEASE-p1 FreeBSD 4.9-RELEASE-p1 #5: Fri Jan 9 06:20:59 TSK 2004 pg@rainbow.ie.tusur.ru:/usr/obj/usr/src/sys/Rainbow i386 >Description: On TYAN Thunder 2462/Tiger 2460 bge-driven network card (3C996) passes only packets not over some small limit (typically 100-150 bytes). Moreover, this limit may be different after next power-on/off cycle. The same problem appears on the same hardware under Windows XP, but the problem disappears under W2K with 3c996 drivers from 3COM. Moreover, the problem under FreeBSD (and WinXP) disappears if it's booted after warm reboot after W2K, but reappears after full power-off/on. Problem was first detected on FreeBSD 4.5 Problem appears if the card inserted into 64-bit slot, and into 32-bit slot also. The problem is independent from link speed (10/100/1000). The problem also exists with Altima AC1002-based Hardlink HA-64G card with bge driver patched to recognize this card. Both cards works excellent with the same version of FreeBSD on i865-based Albatron board with Intel Celeron 1,7 G under heavy enough load. >How-To-Repeat: Just recreate this hardware config. >Fix: None known. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Jan 9 04:10:27 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFEBD16A4CE for ; Fri, 9 Jan 2004 04:10:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7320843D46 for ; Fri, 9 Jan 2004 04:10:24 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i09CAOFR067642 for ; Fri, 9 Jan 2004 04:10:24 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i09CAOF9067641; Fri, 9 Jan 2004 04:10:24 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Jan 2004 04:10:24 -0800 (PST) Message-Id: <200401091210.i09CAOF9067641@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dofri Jonsson Subject: Re: kern/43314: kernel panic "clist reservation botch" X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dofri Jonsson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jan 2004 12:10:27 -0000 The following reply was made to PR kern/43314; it has been noted by GNATS. From: Dofri Jonsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/43314: kernel panic "clist reservation botch" Date: Fri, 9 Jan 2004 12:00:27 +0000 I have this problem as well. I intermittently get a "panic: clist reservation botch". This happened in FreeBSD 4.8 also, on different hardware. Most frequent is twice in one day, but usually about once a month, so it's not a big problem. All in all this has happened maybe 12-15 times over the last few months, since I started using FreeBSD as a desktop system. I followed the kernel debug info, but I can't get a backtrace. I don't know if I'm doing something wrong or if this is part of the problem. I have the crashdump and I can dig into it if someone tells me what to look for. (root@vulcan:/usr/obj) # > gdb -k kernel.debug vmcore.0 GNU gdb 4.18 (FreeBSD) Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"...Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 2627 in elfstab_build_psymtabs Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 933 in fill_symbuf IdlePTD at phsyical address 0x003d1000 initial pcb at physical address 0x0032ee00 panicstr: clist reservation botch panic messages: --- dmesg: kernel message buffer has different magic number --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) where #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 Cannot access memory at address 0xdc424a98. (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 Cannot access memory at address 0xdc424a98. (kgdb) info register eax 0x0 0 ecx 0x0 0 edx 0x0 0 ebx 0x0 0 esp 0xdc424a8c 0xdc424a8c ebp 0xdc424a98 0xdc424a98 esi 0x104 260 edi 0xc2450b00 -1035662592 eip 0xc0167b8a 0xc0167b8a eflags 0x0 0 cs 0x0 0 ss 0x0 0 ds 0x0 0 es 0x0 0 fs cannot read u area ptr for proc at 0xdb177b60 (kgdb) quit (root@vulcan:/usr/obj) # > gdb -k kernel.0 vmcore.0 GNU gdb 4.18 (FreeBSD) Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"...(no debugging symbols found)... IdlePTD at phsyical address 0x003d1000 initial pcb at physical address 0x0032ee00 panicstr: clist reservation botch panic messages: --- dmesg: kernel message buffer has different magic number --- #0 0xc0167b8a in dumpsys () (kgdb) where #0 0xc0167b8a in dumpsys () Cannot access memory at address 0xdc424a98. (kgdb) info register eax 0x0 0 ecx 0x0 0 edx 0x0 0 ebx 0x0 0 esp 0xdc424a8c 0xdc424a8c ebp 0xdc424a98 0xdc424a98 esi 0x104 260 edi 0xc2450b00 -1035662592 eip 0xc0167b8a 0xc0167b8a eflags 0x0 0 cs 0x0 0 ss 0x0 0 ds 0x0 0 es 0x0 0 fs cannot read u area ptr for proc at 0xdb177b60 Complete /var/log/messages boot info: Jan 9 10:02:58 vulcan /kernel: Copyright (c) 1992-2003 The FreeBSD Project. Jan 9 10:02:58 vulcan /kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Jan 9 10:02:58 vulcan /kernel: The Regents of the University of California. All rights reserved. Jan 9 10:02:58 vulcan /kernel: FreeBSD 4.9-RELEASE-p1 #3: Tue Dec 16 11:41:03 GMT 2003 Jan 9 10:02:58 vulcan /kernel: admin@vulcan.tern.is:/usr/obj/usr/src/sys/VULCAN Jan 9 10:02:58 vulcan /kernel: Timecounter "i8254" frequency 1193182 Hz Jan 9 10:02:58 vulcan /kernel: CPU: Intel Pentium III (996.77-MHz 686-class CPU) Jan 9 10:02:58 vulcan /kernel: Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Jan 9 10:02:58 vulcan /kernel: Features=0x383f9ff Jan 9 10:02:58 vulcan /kernel: real memory = 536805376 (524224K bytes) Jan 9 10:02:58 vulcan /kernel: config> di pcic0 Jan 9 10:02:58 vulcan /kernel: No such device: pcic0 Jan 9 10:02:58 vulcan /kernel: Invalid command or syntax. Type `?' for help. Jan 9 10:02:58 vulcan /kernel: config> di sio1 Jan 9 10:02:58 vulcan /kernel: No such device: sio1 Jan 9 10:02:58 vulcan /kernel: Invalid command or syntax. Type `?' for help. Jan 9 10:02:58 vulcan /kernel: config> di ppc0 Jan 9 10:02:58 vulcan /kernel: No such device: ppc0 Jan 9 10:02:58 vulcan /kernel: Invalid command or syntax. Type `?' for help. Jan 9 10:02:58 vulcan /kernel: config> di bt0 Jan 9 10:02:58 vulcan /kernel: No such device: bt0 Jan 9 10:02:58 vulcan /kernel: Invalid command or syntax. Type `?' for help. Jan 9 10:02:58 vulcan /kernel: config> di aic0 Jan 9 10:02:59 vulcan /kernel: No such device: aic0 Jan 9 10:02:59 vulcan /kernel: Invalid command or syntax. Type `?' for help. Jan 9 10:02:59 vulcan /kernel: config> di aha0 Jan 9 10:02:59 vulcan /kernel: No such device: aha0 Jan 9 10:02:59 vulcan /kernel: Invalid command or syntax. Type `?' for help. Jan 9 10:02:59 vulcan /kernel: config> di adv0 Jan 9 10:02:59 vulcan /kernel: No such device: adv0 Jan 9 10:02:59 vulcan /kernel: Invalid command or syntax. Type `?' for help. Jan 9 10:02:59 vulcan /kernel: config> q Jan 9 10:02:59 vulcan /kernel: avail memory = 518549504 (506396K bytes) Jan 9 10:02:59 vulcan /kernel: Preloaded elf kernel "kernel" at 0xc03b2000. Jan 9 10:02:59 vulcan /kernel: Preloaded userconfig_script "/boot/kernel.conf" at 0xc03b209c. Jan 9 10:02:59 vulcan /kernel: Pentium Pro MTRR support enabled Jan 9 10:02:59 vulcan /kernel: md0: Malloc disk Jan 9 10:02:59 vulcan /kernel: Using $PIR table, 9 entries at 0xc00fdf30 Jan 9 10:02:59 vulcan /kernel: npx0: on motherboard Jan 9 10:02:59 vulcan /kernel: npx0: INT 16 interface Jan 9 10:02:59 vulcan /kernel: pcib0: on motherboard Jan 9 10:02:59 vulcan /kernel: pci0: on pcib0 Jan 9 10:02:59 vulcan /kernel: agp0: mem 0xf0000000-0xf3ffffff at device 0.0 on pci0 Jan 9 10:02:59 vulcan /kernel: pcib1: at device 1.0 on pci0 Jan 9 10:02:59 vulcan /kernel: pci2: on pcib1 Jan 9 10:02:59 vulcan /kernel: drm0: mem 0xec800000-0xecffffff,0xec000000-0xec003fff,0xf4000000-0xf5ffffff irq 10 at device 0.0 on pci2 Jan 9 10:02:59 vulcan /kernel: info: [drm] AGP at 0xf0000000 64MB Jan 9 10:02:59 vulcan /kernel: info: [drm] Initialized mga 3.1.0 20021029 on minor 0 Jan 9 10:02:59 vulcan /kernel: pcib2: at device 30.0 on pci0 Jan 9 10:02:59 vulcan /kernel: pci1: on pcib2 Jan 9 10:02:59 vulcan /kernel: xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0x2000-0x207f mem 0xed000000-0xed00007f irq 5 at device 4.0 on pci1 Jan 9 10:02:59 vulcan /kernel: xl0: Ethernet address: 00:04:75:50:35:42 Jan 9 10:02:59 vulcan /kernel: miibus0: on xl0 Jan 9 10:02:59 vulcan /kernel: ukphy0: on miibus0 Jan 9 10:02:59 vulcan /kernel: ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Jan 9 10:02:59 vulcan /kernel: isab0: at device 31.0 on pci0 Jan 9 10:02:59 vulcan /kernel: isa0: on isab0 Jan 9 10:02:59 vulcan /kernel: atapci0: port 0x1800-0x180f at device 31.1 on pci0 Jan 9 10:02:59 vulcan /kernel: ata0: at 0x1f0 irq 14 on atapci0 Jan 9 10:02:59 vulcan /kernel: ata1: at 0x170 irq 15 on atapci0 Jan 9 10:02:59 vulcan /kernel: uhci0: port 0x1820-0x183f irq 11 at device 31.2 on pci0 Jan 9 10:02:59 vulcan /kernel: usb0: on uhci0 Jan 9 10:02:59 vulcan /kernel: usb0: USB revision 1.0 Jan 9 10:02:59 vulcan /kernel: uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Jan 9 10:02:59 vulcan /kernel: uhub0: 2 ports with 2 removable, self powered Jan 9 10:02:59 vulcan /kernel: uhub1: Microsoft Internet Keyboard Pro, class 9/0, rev 1.10/5.00, addr 2 Jan 9 10:02:59 vulcan /kernel: uhub1: 3 ports with 2 removable, bus powered Jan 9 10:02:59 vulcan /kernel: ukbd0: Microsoft Microsoft Natural Keyboard Pro, rev 1.10/1.14, addr 3, iclass 3/1 Jan 9 10:02:59 vulcan /kernel: kbd1 at ukbd0 Jan 9 10:02:59 vulcan /kernel: uhid0: Microsoft Microsoft Natural Keyboard Pro, rev 1.10/1.14, addr 3, iclass 3/0 Jan 9 10:02:59 vulcan /kernel: ums0: Logitech USB Mouse, rev 1.10/6.20, addr 4, iclass 3/1 Jan 9 10:02:59 vulcan /kernel: ums0: 3 buttons and Z dir. Jan 9 10:02:59 vulcan /kernel: pci0: (vendor=0x8086, dev=0x2413) at 31.3 irq 9 Jan 9 10:02:59 vulcan /kernel: pcm0: port 0x1300-0x133f,0x1200-0x12ff irq 9 at device 31.5 on pci0 Jan 9 10:02:59 vulcan /kernel: pcm0: Jan 9 10:02:59 vulcan /kernel: orm0: