Re: lsdvd won't work on DF 1.8

2007-02-18 Thread Kimura Fuyuki
On Monday 19 February 2007, Kimura Fuyuki wrote: > On Sunday 18 February 2007, YONETANI Tomokazu wrote: > > On Sun, Feb 18, 2007 at 12:23:03PM +0900, Kimura Fuyuki wrote: > > > OK, I give up... > > > > > > Could someone tell me why the following simple program fails to print a > > > dvd title? It s

Re: lsdvd won't work on DF 1.8

2007-02-18 Thread Kimura Fuyuki
On Sunday 18 February 2007, YONETANI Tomokazu wrote: > On Sun, Feb 18, 2007 at 12:23:03PM +0900, Kimura Fuyuki wrote: > > OK, I give up... > > > > Could someone tell me why the following simple program fails to print a > > dvd title? It seems to read from offset 32768. (block boundary?) > > ... Ha

Re: lsdvd won't work on DF 1.8

2007-02-18 Thread YONETANI Tomokazu
On Sun, Feb 18, 2007 at 12:23:03PM +0900, Kimura Fuyuki wrote: > OK, I give up... > > Could someone tell me why the following simple program fails to print a dvd > title? It seems to read from offset 32768. (block boundary?) ... Having posted the last message, I was wondering if FreeBSD has eve

Re: lsdvd won't work on DF 1.8

2007-02-17 Thread YONETANI Tomokazu
On Sun, Feb 18, 2007 at 02:03:22PM +0900, Kimura Fuyuki wrote: > On Sunday 18 February 2007, Dmitri Nikulin wrote: > > On 2/18/07, Kimura Fuyuki <[EMAIL PROTECTED]> wrote: > > > > > > Could someone tell me why the following simple program fails to print a > > > dvd title? It seems to read from offs

Re: lsdvd won't work on DF 1.8

2007-02-17 Thread Kimura Fuyuki
On Sunday 18 February 2007, Dmitri Nikulin wrote: > On 2/18/07, Kimura Fuyuki <[EMAIL PROTECTED]> wrote: > > > > Could someone tell me why the following simple program fails to print a > > dvd title? It seems to read from offset 32768. (block boundary?) > On that note, it doesn't read from 32768.

Re: lsdvd won't work on DF 1.8

2007-02-17 Thread Dmitri Nikulin
On 2/18/07, Kimura Fuyuki <[EMAIL PROTECTED]> wrote: OK, I give up... Could someone tell me why the following simple program fails to print a dvd title? It seems to read from offset 32768. (block boundary?) #include int main(void) { FILE *fp; char buf[33]; buf[32] = '\

lsdvd won't work on DF 1.8

2007-02-17 Thread Kimura Fuyuki
OK, I give up... Could someone tell me why the following simple program fails to print a dvd title? It seems to read from offset 32768. (block boundary?) #include int main(void) { FILE *fp; char buf[33]; buf[32] = '\0'; fp = fopen("/dev/acd0c", "r"); fse