Kit de marketing mais completo do mercado!!

2002-11-03 Thread Alessandra - Fastmarketing
Title: FastMarketing FRETE GRÁTIS (SEDEX) PARA TODO O BRASIL! O KIT de mala-direta digital mais COMPLETO do mercado, APENAS: R$ 89,00 Não perca tempo! Peça já o seu aqu

Re: Are hodes nodes?

2002-11-03 Thread James Morrison
--- Marcus Brinkmann <[EMAIL PROTECTED]> wrote: > On Sat, Nov 02, 2002 at 01:36:03PM -0800, James Morrison wrote: > > > > --- "Thomas Bushnell, BSG" <[EMAIL PROTECTED]> wrote: > > > James Morrison <[EMAIL PROTECTED]> writes: > > > > > > > Looking at [hurd]/hostmux/hostmux.h I noticed a strange

Re: mlock in libc

2002-11-03 Thread Marcus Brinkmann
Hi, shouldn't be on libc-alpha, I guess. It's just noise for most of the people there. On Sun, Nov 03, 2002 at 11:29:33AM -0500, James A Morrison wrote: > I was looking at why gpg fails to build on the Hurd. I discovered mlock > is what is broken. Without really going into your patch, here i

Re: kbd.diff (X loses keyboard on trivial operation)

2002-11-03 Thread Marcus Brinkmann
On Sun, Nov 03, 2002 at 08:09:07PM -0500, Roland McGrath wrote: > I thought we had /hurd/streamio precisely to deal with these devices. streamio doesn't deal with setting kbd to raw mode etc. Marcus -- `Rhubarb is no Egyptian god.' GNU http://www.gnu.org[EMAIL PROTECTED] Marcus Brinkma

Re: kbd.diff (X loses keyboard on trivial operation)

2002-11-03 Thread Roland McGrath
I thought we had /hurd/streamio precisely to deal with these devices. ___ Bug-hurd mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-hurd

Re: /bin/ids is setuid root, why ?

2002-11-03 Thread Roland McGrath
ids needs to be root to use pid2task on PIDs owned by other users. It does that so it can be trusted to query tasks directly for what auth port they are using. This is what ids does different from what using ps would do--it gets the auth port rather than the proc server's idea of the associated I

Re: implementing bash's magic

2002-11-03 Thread Moritz Schulte
Marcus Brinkmann <[EMAIL PROTECTED]> writes: > Ok, this is simple enough to be in one single file like fakeroot in > directory trans/. Ok, done: http://duesseldorc.ccc.de/~moritz/files/socketio.c.gz. There are some minor improvements since netio version 0.2. io_restrict is not yet used. There a

Re: bash ending slash breaks stuff

2002-11-03 Thread Marcus Brinkmann
On Fri, Nov 01, 2002 at 11:05:22AM +0100, Robert Millan wrote: > when using Bash expansion on directories, it will > print them with a trailing slash. this is problematic > on GNU because performing operations on these > directories will fail, eg: > > # rm -r foo > # rm -r foobar/ > # rm: cannot r

Re: /bin/ids is setuid root, why ?

2002-11-03 Thread Marcus Brinkmann
On Sun, Nov 03, 2002 at 03:50:52PM +0100, Gaël Le Mignot wrote: > Hello, > Does someone know why /bin/ids has the setuid-bit set ? > Since it works well without the bit too, why keep it ? This is so that the ids program really really gets the authentication port of its parent, inst

Re: Are hodes nodes?

2002-11-03 Thread Marcus Brinkmann
On Sat, Nov 02, 2002 at 01:36:03PM -0800, James Morrison wrote: > > --- "Thomas Bushnell, BSG" <[EMAIL PROTECTED]> wrote: > > James Morrison <[EMAIL PROTECTED]> writes: > > > > > Looking at [hurd]/hostmux/hostmux.h I noticed a strange comment. > > > /* The state associated with a host multiplexe

Re: "hurd/isofs: cannot find valid superblock"

2002-11-03 Thread Marcus Brinkmann
On Wed, Oct 30, 2002 at 01:31:26PM -, kurian kattukaren wrote: > hi, > settrans -a /cdrom /hurd/isofs /dev/hd3 gives me > hurd/isofs cannot find valid superblock on device. any info on > this is welcome. Is hd3 detected as your CD ROM at boot time? Do you have a valid iso9660 filesystem

Re: kbd.diff (X loses keyboard on trivial operation)

2002-11-03 Thread Marcus Brinkmann
On Mon, Oct 28, 2002 at 02:55:29PM -0500, David Walter wrote: > X loses keyboard on trivial operation > > ls -l /dev/kbd > > The kbd translator formerly believed it needed to start a new thread > for every open call. It also _closed_ the device after every > corresponding close_hook cal

Re: implementing bash's magic

2002-11-03 Thread Roland McGrath
A better name is socketio. ___ Bug-hurd mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-hurd

Re: implementing bash's magic

2002-11-03 Thread Marcus Brinkmann
On Sat, Oct 19, 2002 at 12:31:55AM +0200, Moritz Schulte wrote: > [Lookups like /dev/{tcp,udp}/host/port] > > I have written a translator, which implements exactly this: netio. > Can be fetched from > http://duesseldorf.ccc.de/~moritz/files/netio-0.2.tar.gz. Ok, this is simple enough to be in one

Re: implementing bash's magic

2002-11-03 Thread Marcus Brinkmann
On Fri, Oct 18, 2002 at 06:20:34PM -0400, Roland McGrath wrote: > The /dev/fd cases use magic with libc support old because that is the only > sensical way to implement them. For other features you can just use normal > translators that do the work themselves. i.e., to return a connected > socket

Re: libstore/kids.c question

2002-11-03 Thread Neal H. Walfield
> But shouldn't the first line in the function body read: > > unsigned size = num_children * sizeof (struct store *); > > "children" is a "struct store **". That is correct and given the simplicity of the patch, I have applied it. Thanks. ___ Bug-

libstore/kids.c question

2002-11-03 Thread Moritz Schulte
Hi, libstore/kids.c contains the following code: /* Set STORE's current children list to (a copy of) CHILDREN and NUM_CHILDREN. */ error_t store_set_children (struct store *store, struct store *const *children, size_t num_children) { unsigned size = num_children * sizeof

/bin/ids is setuid root, why ?

2002-11-03 Thread Gaël Le Mignot
Hello, Does someone know why /bin/ids has the setuid-bit set ? Since it works well without the bit too, why keep it ? (kilobug@kesto, 5) ~/src/translators/src/hook $ l /bin/ids -rwsr-xr-x1 root root52925 Oct 31 12:15 /bin/ids (kilobug@kesto, 6) ~/src/translators/src