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

Fix bug in previous commit, 0-initialize the usernumber so that messages

imported for robots actually have a 'to' index value of 0.
parent dcd05fc8
No related branches found
No related tags found
No related merge requests found
......@@ -4348,7 +4348,7 @@ int import_netmail(const char* path, fmsghdr_t hdr, FILE* fp, const char* inboun
{
char info[512],str[256],tmp[256],subj[256]
,*fmsgbuf=NULL,*p,*tp,*sp;
int i,match,usernumber;
int i,match,usernumber = 0;
ulong length;
fidoaddr_t addr;
......
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