Re: daily run output & passwd diff

2001-11-12 Thread John Baldwin
On 13-Nov-01 Crist J. Clark wrote: >> What if someone comments out a line in the password file of a user? Then >> this >> won't hide that password. When this originally went in, it took a long >> while >> to get a sed line people were happy with. Replacing the version number is a >> minor thin

Re: daily run output & passwd diff

2001-11-12 Thread Crist J. Clark
On Mon, Nov 12, 2001 at 08:08:37AM -0800, John Baldwin wrote: > > On 11-Nov-01 Crist J. Clark wrote: > > On Fri, Nov 09, 2001 at 02:55:55PM +0100, Alexander Leidinger wrote: > >> Hi, > >> > >> I think the CVS tag shouldn't be interpreted as an entry which contains > >> a password. > >> > >> ---

Re: namespace pollution with struct thread?

2001-11-12 Thread Steve Kargl
I can confirm that I can build wine and run it if I put #ifdef _KERNEL ... #endif in sys/proc.h. I was uncertain about whether sys/user.h was a non-standard header file. I will probably relay Garrett's point to the wine developers at some point. steve On Mon, Nov 12, 2001 at 03:50:16PM -0800,

Re: namespace pollution with struct thread?

2001-11-12 Thread John Baldwin
On 12-Nov-01 Julian Elischer wrote: > On the other hand we might conceivably be able to > stop the export from the kernel of this struct type. Not unless we stop exporting struct proc since each proc has an embedded thread. > On Mon, 12 Nov 2001, Garrett Wollman wrote: > >> <> <[EMAIL PROTECT

Re: namespace pollution with struct thread?

2001-11-12 Thread Julian Elischer
On the other hand we might conceivably be able to stop the export from the kernel of this struct type. On Mon, 12 Nov 2001, Garrett Wollman wrote: > < >said: > > > I WINE developer has suggested that this is namespace > > pollution on the part of FreeBSD, but he hasn't given > > any details

namespace pollution with struct thread?

2001-11-12 Thread Garrett Wollman
< said: > I WINE developer has suggested that this is namespace > pollution on the part of FreeBSD, but he hasn't given > any details to support what he means. Applications which include , or any other non-standard header file, should expect that any conceivable symbol might be used therein. F

Re: kernel won't build - atomic.c/atomic.h errors...

2001-11-12 Thread Peter Jeremy
Sorry for mot responding sooner. On Wed, Oct 31, 2001 at 09:27:58PM -0600, Jim Bryant wrote: >cc -c -g -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes >-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi >-nostdinc -I- -I. -I../../.. -I../

namespace pollution with struct thread?

2001-11-12 Thread Steve Kargl
Recent versions of WINE have defined a struct thread in wine/server/thread.h. Unfortunately, wine/server/context_i386.c sucks in sys/user.h, which brings in sys/proc.h. Of course, sys/proc.h contains the post-KSE integrated struct thread. I've managed to build WINE by temporarily placing a #if

Re: wake up on lan driver support

2001-11-12 Thread Brooks Davis
On Sun, Nov 11, 2001 at 04:38:50PM -0800, matt wrote: > any clue to find the tech doc regarding the format of > the packet. I'd code such thing. It's a very good > feature for FreeBSD. ports/net/wakeonlan I'd really like to see some driver support for WOL for support of dynamic power control on

RE: USB and SMP

2001-11-12 Thread Nick Hibma
Definitely the drivers. UHCI is a pile of that stuff that smells. Nick > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Daniel O'Connor > Sent: 11 November 2001 03:21 > To: Jim Bryant > Cc: [EMAIL PROTECTED]; Michael Class > Subject: Re: USB and SMP

Re: daily run output & passwd diff

2001-11-12 Thread John Baldwin
On 11-Nov-01 Crist J. Clark wrote: > On Fri, Nov 09, 2001 at 02:55:55PM +0100, Alexander Leidinger wrote: >> Hi, >> >> I think the CVS tag shouldn't be interpreted as an entry which contains >> a password. >> >> ---snip--- >> Backup passwd and group files: >> >> 1c1 >> < # $FreeBSD:(password):

Re: kqueue(2) doesn't deliver EV_EOF on pipes [patch]

2001-11-12 Thread Maxim Sobolev
> if (nevents > 0 || (eventlist[0].flags & EV_EOF) != 0) { ^^ OOPS, last minute bug. Should be `&&' instead, but it doesn't affect outcome of the test. -Maxim To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-cu

kqueue(2) doesn't deliver EV_EOF on pipes [patch]

2001-11-12 Thread Maxim Sobolev
Hi, I've noticed that kqueue(2) doesn't notify reader about EV_EOF condition on pipe. Attached simple test program highlights the problem (confirmed both on 5-CURRENT and 4-STABLE). Also attached is the simple fix. -Maxim Index: sys/kern/sys_pipe.c =

Re: /dev/null problems

2001-11-12 Thread Peter Wemm
Robert Watson wrote: > So in theory this is fixed, but I actually bumped into an unexpected EPERM > again from a linux emulated program yesterday (acroread4) which popped up > an error message about /dev/null. I haven't tried to reproduce as yet, > since I'm currently rebuilding KDE; /dev/null wo

Re: /dev/null problems

2001-11-12 Thread Robert Watson
So in theory this is fixed, but I actually bumped into an unexpected EPERM again from a linux emulated program yesterday (acroread4) which popped up an error message about /dev/null. I haven't tried to reproduce as yet, since I'm currently rebuilding KDE; /dev/null works properly for me on the Fr

Re: /dev/null problems

2001-11-12 Thread Poul-Henning Kamp
This is fixed already. Read commit mail if you run current. Poul-Henning In message <[EMAIL PROTECTED]>, Gordon Tetl ow writes: >I was trying to build a package the other day, but I was having problems >with /dev/null. My world is from Nov 4th. > >drifter# ls -l /dev/null >crw-rw-rw- 1 root