diff options
-rw-r--r-- | contrib/cvs/src/rcscmds.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/cvs/src/rcscmds.c b/contrib/cvs/src/rcscmds.c index 9a237a9..f62b279 100644 --- a/contrib/cvs/src/rcscmds.c +++ b/contrib/cvs/src/rcscmds.c @@ -148,7 +148,8 @@ call_diff (out) The real fix, of course, will be to have the diff library do all its output through callbacks (which CVS will supply as cvs_output and cvs_outerr). */ - sleep (1); + /* sleep (1); */ + usleep (10000); if (out == RUN_TTY) return diff_run (call_diff_argc, call_diff_argv, NULL); @@ -171,7 +172,8 @@ call_diff3 (out) The real fix, of course, will be to have the diff library do all its output through callbacks (which CVS will supply as cvs_output and cvs_outerr). */ - sleep (1); + /* sleep (1); */ + usleep (10000); if (out == RUN_TTY) return diff3_run (call_diff_argc, call_diff_argv, NULL); |