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

Switched NETFLAGS.DAT creation from using fnopen() to fopen()

- wasn't working on Unix and didn't need share-compatible open in temp_dir.
parent 35aa4016
No related branches found
No related tags found
No related merge requests found
......@@ -176,9 +176,10 @@ bool sbbs_t::pack_qwk(char *packet, ulong *msgcnt, bool prepack)
/* Create NETFLAGS.DAT */
/***********************/
sprintf(str,"%sNETFLAGS.DAT",cfg.temp_dir);
if((stream=fnopen(&file,str,O_WRONLY|O_CREAT))==NULL) {
errormsg(WHERE,ERR_OPEN,str,O_WRONLY|O_CREAT);
return(false); }
if((stream=fopen(str,"w"))==NULL) {
errormsg(WHERE,ERR_CREATE,str,0);
return(false);
}
ch=1; /* Net enabled */
if(usrgrps)
for(i=0;i<(usrgrps*1000)+usrsubs[usrgrps-1];i++)
......
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