Re: problem on shut-down

2014-04-03 Thread Riccardo Mottola
Hi, On 04/02/2014 02:20 PM, Justus Winter wrote: Ok, I installed openbsd-inetd and telnetd on a test vm. service {start,stop} openbsd-inetd work as expected. it's not inetd. It actually stops here: root@ithil:~# ps -x PID TT STAT TIME COMMAND 8 - S 88 - S--mode=755 tmpfs 89

Re: Glibc building procedure error report.

2014-04-03 Thread Manolis Ragkousis
> Mmm, I wonder why. The libc_add_on_subdirs=. line in configure should > have made the build system take the libpthread/sysdeps path into account > (at least in the Debian package it does). It takes into account the libpthread/sysdeps tree path. I have pasted the corresponding output of the co

Re: Fwd: Re: [PATCH] Steal all string functions from the libc

2014-04-03 Thread dardevelin
You are totally right. my fault on missing that detail. On 2014-04-03 08:25, Samuel Thibault wrote: dardeve...@cidadecool.com, le Thu 03 Apr 2014 00:37:05 +0200, a écrit : however I could not avoid seeing strcmp function not checking for '\0' in s2 and just s1, No: if b happens to be 0 while

Re: Fwd: Re: [PATCH] Steal all string functions from the libc

2014-04-03 Thread Samuel Thibault
dardeve...@cidadecool.com, le Thu 03 Apr 2014 00:37:05 +0200, a écrit : > however I could not avoid seeing strcmp function not checking for '\0' > in s2 and just s1, No: if b happens to be 0 while a is not, then the if (a!=b) is true and we return a-b. Samuel