1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Restore original tail functionality in ttsnoop, with POSIX args

This commit is contained in:
Matthew R. Trower 2018-10-30 21:16:39 -05:00 committed by Jon Trulson
parent de69b56458
commit 041788debc

View file

@ -517,8 +517,10 @@ main(int argc, char **argv)
}
}
apiTracerArgv[ 0 ] = "tail";
apiTracerArgv[ 1 ] = "-f";
apiTracerArgv[ 2 ] = traceFile;
apiTracerArgv[ 1 ] = "-n";
apiTracerArgv[ 2 ] = "+0";
apiTracerArgv[ 3 ] = "-f";
apiTracerArgv[ 4 ] = traceFile;
if (snoopFile == 0) {
//
// Set up fifo for snoop output
@ -530,8 +532,10 @@ main(int argc, char **argv)
}
}
snooperArgv[ 0 ] = "tail";
snooperArgv[ 1 ] = "-f";
snooperArgv[ 2 ] = snoopFile;
snooperArgv[ 1 ] = "-n";
snooperArgv[ 2 ] = "+0";
snooperArgv[ 3 ] = "-f";
snooperArgv[ 4 ] = snoopFile;
if (optind < argc) {
if (committed2Snooping) {