diff options
author | Mike A. Harris <mharris@redhat.com> | 2004-03-11 19:59:18 +0000 |
---|---|---|
committer | Mike A. Harris <mharris@redhat.com> | 2004-03-11 19:59:18 +0000 |
commit | 26306cabbd04dd0dda454e5157b2450ea834dd0e (patch) | |
tree | 12014a45f182aa779092290720ff5a42ee3991f2 | |
parent | 99abcbf874a03f48fdb854a591dcf7f454c76961 (diff) |
Remove pointless calls to sleep(5) in xtrans, which cause unnecessaryIPv6-REVIEW-BASE
delays in libICE (Bugzilla #297) (Mike A. Harris).
-rw-r--r-- | Xtransutil.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Xtransutil.c b/Xtransutil.c index d84b1a8..9ec5f13 100644 --- a/Xtransutil.c +++ b/Xtransutil.c @@ -573,16 +573,10 @@ trans_mkdir(char *path, int mode) if (updateOwner && !updatedOwner) { PRMSG(1, "mkdir: Owner of %s should be set to root\n", path, 0, 0); -#if !defined(__CYGWIN__) && !defined(__DARWIN__) - sleep(5); -#endif } if (updateMode && !updatedMode) { PRMSG(1, "mkdir: Mode of %s should be set to %04o\n", path, mode, 0); -#if !defined(__CYGWIN__) && !defined(__DARWIN__) - sleep(5); -#endif } return 0; } |