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

Need to use sopen() for lock/unlock to work on Unix.

parent e3a47718
No related branches found
No related tags found
No related merge requests found
......@@ -31,8 +31,8 @@ int main(int argc, char **argv)
&& node_dir[strlen(node_dir)-1]!='/') /* make sure node_dir ends in '/' */
strcat(node_dir,"/");
if((gamedab=open("GAME.DAB",O_RDWR|O_DENYNONE|O_BINARY))==-1) {
printf("Error opening GAME.DAB\r\n"); /* open deny none */
if((gamedab=sopen("GAME.DAB",O_RDWR|O_BINARY,SH_DENYNO))==-1) {
fprintf(stderr,"Error opening GAME.DAB\r\n"); /* open deny none */
return(1);
}
getgamedat(1);
......
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