From owner-freebsd-security Thu Jun 27 0:32:16 2002 Delivered-To: freebsd-security@freebsd.org Received: from 12-234-90-219.client.attbi.com (12-234-90-219.client.attbi.com [12.234.90.219]) by hub.freebsd.org (Postfix) with ESMTP id F261B37B405 for ; Thu, 27 Jun 2002 00:32:05 -0700 (PDT) Received: from master.gorean.org (master.gorean.org [10.0.0.2]) by 12-234-90-219.client.attbi.com (8.12.3/8.12.3) with ESMTP id g5R7W5Bu046947; Thu, 27 Jun 2002 00:32:05 -0700 (PDT) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by master.gorean.org (8.12.4/8.12.4/Submit) with ESMTP id g5R7W4ZH082137; Thu, 27 Jun 2002 00:32:04 -0700 (PDT) Date: Thu, 27 Jun 2002 00:32:04 -0700 (PDT) From: Doug Barton To: Brett Glass Cc: "H. Wade Minter" , Subject: Re: FreeBSD Security Advisory FreeBSD-SA-02:28.resolv In-Reply-To: <4.3.2.7.2.20020626143023.022716c0@localhost> Message-ID: <20020626171543.O42503-100000@master.gorean.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-security@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, 26 Jun 2002, Brett Glass wrote: > At 01:26 PM 6/26/2002, H. Wade Minter wrote: > > >So am I correct in assuming that this fix requires a complete system > >rebuild (make buildworld) as opposed to just rebuilding a particular > >module? > > Worse than that. Every package or port must be reinstalled > or rebuilt too. Ditto everything you've built from source. Only things that are linked statically, which is generally a minority of applications. $ for file in `find /usr/local -type f`; do case `/usr/bin/file $file` in *dynamically*) dynamic=$(($dynamic + 1)) ; echo $file ;; *statically*) static=$(($static + 1)) ; echo $file ;; esac done $ echo "static: $static dynamic: $dynamic" static: 9 dynamic: 916 Please don't be needlessly alarmist. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security" in the body of the message