Re: The patch of pfinet

2008-08-15 Thread zhengda
[EMAIL PROTECTED] wrote: Hi, On Wed, Aug 13, 2008 at 12:07:50PM +0200, zhengda wrote: for (in = h->interfaces; in < h->interfaces + h->num_interfaces; in++) - if (strcmp (in->device->name, arg) == 0) +if (strcmp (in->name, arg) == 0) Wrong inde

Re: CVS help needed, top and htop

2008-08-15 Thread Samuel Thibault
[EMAIL PROTECTED], le Fri 15 Aug 2008 02:26:29 +0200, a écrit : > > 2. In the file proc/version.c, the procps determines the version of > > Linux kernel to which the /proc belongs to and as I suppose it changes > > the way it reads the fields from /proc files vary. But on Hurd this > > version is r

[task #5497] nfs and nfsd

2008-08-15 Thread anonymous
Follow-up Comment #2, task #5497 (project hurd): Gift Baskets Flowers Spring Flowers Soft Toys Acne Treatment Alternative Medicine

[task #5497] nfs and nfsd

2008-08-15 Thread anonymous
Follow-up Comment #3, task #5497 (project hurd): blood drug test employment drug testing hair drug test pass a drug test random drug testing

[task #5497] nfs and nfsd

2008-08-15 Thread anonymous
Follow-up Comment #4, task #5497 (project hurd): mp3 downloads download mp3 buy mp3 music mp3 music downloads music mp3 download mp3 audio download movies dvd d

[task #5497] nfs and nfsd

2008-08-15 Thread anonymous
Follow-up Comment #5, task #5497 (project hurd): kazakh xml manual xml manual ___ Reply to this item at: ___

[task #5470] Implement pfinet6

2008-08-15 Thread anonymous
Follow-up Comment #3, task #5470 (project hurd): Gift Baskets Flowers Spring Flowers Soft Toys Acne Treatment Alternative Medicine

[task #5488] Update the device driver glue code in GNU Mach

2008-08-15 Thread anonymous
Follow-up Comment #11, task #5488 (project hurd): Gift Baskets Flowers Spring Flowers Soft Toys Acne Treatment Alternative Medicine

[task #5470] Implement pfinet6

2008-08-15 Thread anonymous
Follow-up Comment #4, task #5470 (project hurd): blood drug test employment drug testing hair drug test pass a drug test random drug testing

[task #5488] Update the device driver glue code in GNU Mach

2008-08-15 Thread anonymous
Follow-up Comment #12, task #5488 (project hurd): blood drug test employment drug testing hair drug test pass a drug test random drug testing

[task #5470] Implement pfinet6

2008-08-15 Thread anonymous
Follow-up Comment #5, task #5470 (project hurd): mp3 downloads download mp3 buy mp3 music mp3 music downloads music mp3 download mp3 audio download movies dvd d

[task #5488] Update the device driver glue code in GNU Mach

2008-08-15 Thread anonymous
Follow-up Comment #13, task #5488 (project hurd): mp3 downloads download mp3 buy mp3 music mp3 music downloads music mp3 download mp3 audio download movies dvd

[task #5488] Update the device driver glue code in GNU Mach

2008-08-15 Thread anonymous
Follow-up Comment #14, task #5488 (project hurd): kazakh xml manual xml manual ___ Reply to this item at: ___

[task #5470] Implement pfinet6

2008-08-15 Thread anonymous
Follow-up Comment #6, task #5470 (project hurd): kazakh xml manual xml manual ___ Reply to this item at: ___

[task #1619] designing and writing libchannel, a library for streams

2008-08-15 Thread anonymous
Follow-up Comment #4, task #1619 (project hurd): Gift Baskets Flowers Spring Flowers Soft Toys Acne Treatment Alternative Medicine

[task #5485] Design and implement a sound system

2008-08-15 Thread anonymous
Follow-up Comment #2, task #5485 (project hurd): Gift Baskets Flowers Spring Flowers Soft Toys Acne Treatment Alternative Medicine

[task #5469] Rewrite pfinet

2008-08-15 Thread anonymous
Follow-up Comment #3, task #5469 (project hurd): Gift Baskets Flowers Spring Flowers Soft Toys Acne Treatment Alternative Medicine

[task #5486] Andrew File System (AFS)

2008-08-15 Thread anonymous
Follow-up Comment #2, task #5486 (project hurd): Gift Baskets Flowers Spring Flowers Soft Toys Acne Treatment Alternative Medicine

[task #5499] Logical Volume Manager (LVM)

2008-08-15 Thread anonymous
Follow-up Comment #2, task #5499 (project hurd): Gift Baskets Flowers Spring Flowers Soft Toys Acne Treatment Alternative Medicine

Re: The patch of glibc which allows the user to override the pfinet server

2008-08-15 Thread zhengda
[EMAIL PROTECTED] wrote: + char *name = NULL; No need to initialize this -- the asprintf() will overwrite it anyways. But isn't it always right to initialize a local variable to reduce the possibility of getting bugs? It won't avoid bugs; only either cover t

Re: The patch of glibc which allows the user to override the pfinet server

2008-08-15 Thread Samuel Thibault
zhengda, le Fri 15 Aug 2008 18:27:00 +0200, a écrit : > + if (__asprintf (&name, "SOCK_SERV_%d", domain) < 0) > +__libc_fatal ("hurd: Can't get the socket server path\n"); Shouldn't we just return ENOMEM? Samuel

Re: The patch of glibc which allows the user to override the pfinet server

2008-08-15 Thread zhengda
Samuel Thibault wrote: zhengda, le Fri 15 Aug 2008 18:27:00 +0200, a écrit : + if (__asprintf (&name, "SOCK_SERV_%d", domain) < 0) +__libc_fatal ("hurd: Can't get the socket server path\n"); Shouldn't we just return ENOMEM? In many parts of glibc, __libc_fatal() or assert(

Re: The patch of glibc which allows the user to override the pfinet server

2008-08-15 Thread Samuel Thibault
zhengda, le Fri 15 Aug 2008 19:05:49 +0200, a écrit : > Samuel Thibault wrote: > >zhengda, le Fri 15 Aug 2008 18:27:00 +0200, a écrit : > > > >>+ if (__asprintf (&name, "SOCK_SERV_%d", domain) < 0) > >>+__libc_fatal ("hurd: Can't get the socket server path\n"); > >> > > > >Shouldn't

Re: The patch of glibc which allows the user to override the pfinet server

2008-08-15 Thread zhengda
Samuel Thibault wrote: zhengda, le Fri 15 Aug 2008 19:05:49 +0200, a écrit : Samuel Thibault wrote: zhengda, le Fri 15 Aug 2008 18:27:00 +0200, a écrit : + if (__asprintf (&name, "SOCK_SERV_%d", domain) < 0) +__libc_fatal ("hurd: Can't get the socket server path\n");

Re: The patch of glibc which allows the user to override the pfinet server

2008-08-15 Thread Samuel Thibault
zhengda, le Fri 15 Aug 2008 20:05:53 +0200, a écrit : > Samuel Thibault wrote: > >zhengda, le Fri 15 Aug 2008 19:05:49 +0200, a écrit : > > > >>Samuel Thibault wrote: > >> > >>>zhengda, le Fri 15 Aug 2008 18:27:00 +0200, a écrit : > >>> > >>> > + if (__asprintf (&name, "SOCK_S