mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 11:08:20 +00:00
Remove code relict pointed out by Bernhard.
The condition should never be true, it's leftover from my hacking/debugging code.
This commit is contained in:
parent
288ef20a4e
commit
6dbbce8e05
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ int64_t Raw::GetLine(FILE* arg_file)
|
|||
|
||||
}
|
||||
|
||||
if ( errno == 0 || errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR )
|
||||
if ( errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR )
|
||||
return -2;
|
||||
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue