diff -r mbuffer-20010624/CHANGES mbuffer-20010626/CHANGES 0a1,4 > 20010626: > - bugfix: mbuffer didn't work anymore with pipes due > to incorrect set Outsize (0) > diff -r mbuffer-20010624/configure mbuffer-20010626/configure 601c601 < echo "configure:586: checking target system type" >&5 --- > echo "configure:602: checking target system type" >&5 648c648 < VERSION=20010624 --- > VERSION=20010626 670c670 < echo "configure:655: checking for $ac_word" >&5 --- > echo "configure:671: checking for $ac_word" >&5 700c700 < echo "configure:685: checking for $ac_word" >&5 --- > echo "configure:701: checking for $ac_word" >&5 751c751 < echo "configure:736: checking for $ac_word" >&5 --- > echo "configure:752: checking for $ac_word" >&5 794c794 < #line 779 "configure" --- > #line 795 "configure" 799c799 < if { (eval echo configure:784: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then --- > if { (eval echo configure:800: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 825c825 < echo "configure:810: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 --- > echo "configure:826: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 830c830 < echo "configure:815: checking whether we are using GNU C" >&5 --- > echo "configure:831: checking whether we are using GNU C" >&5 858c858 < echo "configure:843: checking whether ${CC-cc} accepts -g" >&5 --- > echo "configure:859: checking whether ${CC-cc} accepts -g" >&5 957c957 < echo "configure:942: checking for $ac_word" >&5 --- > echo "configure:958: checking for $ac_word" >&5 1075c1075 < echo "configure:1044: checking for library containing sem_init" >&5 --- > echo "configure:1076: checking for library containing sem_init" >&5 1082c1082 < #line 1051 "configure" --- > #line 1083 "configure" 1201c1201 < echo "configure:1170: checking how to run the C preprocessor" >&5 --- > echo "configure:1202: checking how to run the C preprocessor" >&5 1256c1256 < { (eval echo configure:1225: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } --- > { (eval echo configure:1257: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1323c1323 < echo "configure:1292: checking for $ac_func" >&5 --- > echo "configure:1324: checking for $ac_func" >&5 1328c1328 < #line 1297 "configure" --- > #line 1329 "configure" 1376c1376 < echo "configure:1345: checking for working mmap" >&5 --- > echo "configure:1377: checking for working mmap" >&5 1384c1384 < #line 1353 "configure" --- > #line 1385 "configure" 1582c1582 < echo "configure:1551: checking for ANSI C header files" >&5 --- > echo "configure:1583: checking for ANSI C header files" >&5 1587c1587 < #line 1556 "configure" --- > #line 1588 "configure" 1595c1595 < { (eval echo configure:1564: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } --- > { (eval echo configure:1596: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1651c1651 < #line 1620 "configure" --- > #line 1652 "configure" 1786c1786 < #line 1755 "configure" --- > #line 1787 "configure" diff -r mbuffer-20010624/configure.in mbuffer-20010626/configure.in 12c12 < VERSION=20010624 --- > VERSION=20010626 diff -r mbuffer-20010624/mbuffer.c mbuffer-20010626/mbuffer.c 29c29 < Memmap = 0, Status = 1, Outsize = 0, Nooverwrite = O_EXCL, --- > Memmap = 0, Status = 1, Outsize = 10240, Nooverwrite = O_EXCL, 439a440,442 > #ifdef EXPERIMENTAL > "-O : output data to host and port

\n" > #endif 441a445 > "WARNING : multi-volume code is supposed to be buggy for big devices\n" 509c513 < Blocksize = calcint(argv,c,Blocksize); --- > Blocksize = Outsize = calcint(argv,c,Blocksize); 689c693 < if (Blocksize != st.st_blksize) --- > if (Blocksize > st.st_blksize) { 691c695,696 < Outsize = st.st_blksize; --- > Outsize = st.st_blksize; > }