wmail: use continue instead of goto.

This commit is contained in:
Jeremy Sowden 2019-06-21 11:50:30 +01:00 committed by Carlos R. Mafra
parent 68baa67992
commit 2ae0c7cba4

View file

@ -1091,7 +1091,7 @@ static void ParseMBoxFile( struct stat *fileStat )
char *addr = buf + sizeof "From:";
if( SkipSender( addr ))
goto NEXTMAIL;
continue;
char *name;
if(( name = ParseFromField( addr )) == NULL )
@ -1112,8 +1112,6 @@ static void ParseMBoxFile( struct stat *fileStat )
RemoveLastName();
--numMails;
}
NEXTMAIL:
;
}
fclose( f );