Skip to content
Snippets Groups Projects
Commit fc3d54c6 authored by rswindell's avatar rswindell
Browse files

Fixed sopen_test_thread.

parent 0b92da69
No related branches found
No related tags found
No related merge requests found
......@@ -268,12 +268,10 @@ static void sopen_test_thread(void* arg)
if((fd=sopen(LOCK_FNAME,O_RDWR,SH_DENYNO))!=-1)
printf("!FAILURE: allowed to reopen with SH_DENYNO\n");
else if((fd=sopen(LOCK_FNAME,O_RDWR,SH_DENYRD))!=-1)
printf("!FAILURE: allowed to reopen with SH_DENYRD\n");
else if((fd=sopen(LOCK_FNAME,O_RDWR,SH_DENYWR))!=-1)
printf("!FAILURE: allowed to reopen with SH_DENYWR\n");
else if((fd=sopen(LOCK_FNAME,O_RDWR,SH_DENYNO))!=-1)
printf("!FAILURE: allowed to reopen with SH_DENYNO\n");
else if((fd=sopen(LOCK_FNAME,O_RDWR,SH_DENYRW))!=-1)
printf("!FAILURE: allowed to reopen with SH_DENYRW\n");
else
printf("SUCCESS: reopen disallowed\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment