summaryrefslogtreecommitdiff
path: root/pr/tests/lazyinit.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/tests/lazyinit.c')
-rw-r--r--pr/tests/lazyinit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pr/tests/lazyinit.c b/pr/tests/lazyinit.c
index 5ec1c957..2a910f20 100644
--- a/pr/tests/lazyinit.c
+++ b/pr/tests/lazyinit.c
@@ -70,7 +70,7 @@ int main(int argc, char **argv)
PR_LOCAL_THREAD, PR_JOINABLE_THREAD, 0);
break;
- case 3: file = PR_Open("/usr/tmp/", PR_RDONLY, 0);
+ case 3: file = PR_Open("./tmp-", PR_RDONLY, 0);
break;
case 4: udp = PR_NewUDPSocket();
@@ -79,7 +79,7 @@ int main(int argc, char **argv)
case 5: tcp = PR_NewTCPSocket();
break;
- case 6: dir = PR_OpenDir("/usr/tmp/");
+ case 6: dir = PR_OpenDir("./tmp-");
break;
case 7: (void)PR_NewThreadPrivateIndex(&pdkey, NULL);