Don't complain if reading an extended nodelist line fails
This commit is contained in:
parent
6357b370c6
commit
9b3a2e4d07
@ -6,6 +6,10 @@ v0.91.9 16-May-2007
|
||||
general:
|
||||
Fixed building on FreeBSD, tested on 5.3
|
||||
|
||||
libnodelist:
|
||||
Don't complain if attempt to read an extended nodelist line
|
||||
fails.
|
||||
|
||||
mbsebbs:
|
||||
Fixed upload crash when a FILE_ID.DIZ is found but the bbs is
|
||||
not allowed to open for reading.
|
||||
|
@ -908,7 +908,7 @@ node *getnlent(faddr *addr)
|
||||
*/
|
||||
while (TRUE) {
|
||||
if (fgets(ebuf, sizeof(ebuf)-1, fp) == NULL) {
|
||||
WriteError("$fgets failed for nodelist entry");
|
||||
// WriteError("$fgets failed for nodelist entry"); Errors are allowed here.
|
||||
break;
|
||||
}
|
||||
/*
|
||||
|
Reference in New Issue
Block a user