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

Fix bug reported by Jon Justvig with opening stray outbound packets:

ERROR 2 (No such file or directory) opening stray packet: /sbbs/temp/sbbsecho/577ab8e4.pkt
parent 03ecec67
No related branches found
No related tags found
No related merge requests found
......@@ -4419,7 +4419,7 @@ void find_stray_packets(void)
printf("%21s: %s ","Stray Outbound Packet", packet);
if((fp=fopen(path,"rb"))==NULL) {
if((fp=fopen(packet,"rb"))==NULL) {
lprintf(LOG_ERR,"ERROR %u (%s) opening stray packet: %s"
,errno, strerror(errno), packet);
continue;
......
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