summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike A. Harris <mharris@redhat.com>2004-03-11 19:59:18 +0000
committerMike A. Harris <mharris@redhat.com>2004-03-11 19:59:18 +0000
commit26306cabbd04dd0dda454e5157b2450ea834dd0e (patch)
tree12014a45f182aa779092290720ff5a42ee3991f2
parent99abcbf874a03f48fdb854a591dcf7f454c76961 (diff)
downloadxorg-lib-libxtrans-IPv6-REVIEW.tar.gz
Remove pointless calls to sleep(5) in xtrans, which cause unnecessaryIPv6-REVIEW-BASEIPv6-REVIEW
delays in libICE (Bugzilla #297) (Mike A. Harris).
-rw-r--r--Xtransutil.c6
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;
}