Re: /bin/sh dumps core with here-document of 8bit text

2000-07-28 Thread Hiroyuki Hanai
#!/bin/sh cat EOF [8bit text which contains 0x82 character] EOF And, if I use 'EOF' instead of EOF, it works fine. Do you have any idea about this behavior? And I want to quote that we Japanese often meet 0x82 because it is contained in Shift_JIS encoding. :-( h.h. To Unsubscribe:

fcntl and /dev/random

2000-07-28 Thread Hiroyuki Hanai
Setting status flags using F_SETFL command of fcntl(2) on the file descriptor, which is returned by open(2)ing /dev/random, seems not to be supported. For example, when I run following code; #include stdio.h #include errno.h #include fcntl.h main() { int fd; fd =

Re: fcntl and /dev/random

2000-07-29 Thread Hiroyuki Hanai
I'm looking at this; I'll have something by the end of the weekend for 5-CURRENT; 4-STABLE will take a bit longer. I don't think I'll Wow, great. dop anything for 3-* as it is at its end-of-life. I agree. We can ignore 3-* as long as they don't show any big problem. Cheers, h.hanai To