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

No particular reason input.msg should be uppercase here.

parent 40173133
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ bool sbbs_t::email(int usernumber, char *top, char *subj, long mode)
if(cfg.sys_misc&SM_DELREADM)
msgattr|=MSG_KILLREAD;
sprintf(msgpath,"%sINPUT.MSG", cfg.node_dir);
sprintf(msgpath,"%sinput.msg", cfg.node_dir);
username(&cfg,usernumber,str2);
if(!writemsg(msgpath,top,title,mode,INVALID_SUB,str2)) {
bputs(text[Aborted]);
......
......@@ -189,7 +189,7 @@ bool sbbs_t::postmsg(uint subnum, smbmsg_t *remsg, long wm_mode)
if(cfg.sub[subnum]->misc&SUB_NAME)
bputs(text[UsingRealName]);
sprintf(str,"%sINPUT.MSG",cfg.node_dir);
sprintf(str,"%sinput.msg",cfg.node_dir);
if(!writemsg(str,top,title,wm_mode,subnum,touser)
|| (long)(length=flength(str))<1) { /* Bugfix Aug-20-2003: Reject negative length */
bputs(text[Aborted]);
......
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