mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
FreeBSD build fix addendum: unintended variable shadowing.
This commit is contained in:
parent
21df25d429
commit
be05d7b435
1 changed files with 3 additions and 3 deletions
|
@ -971,12 +971,12 @@ FILE* open_package(string& path, const string& mode)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SafePathOp::CheckValid(const char* result, const char* path,
|
void SafePathOp::CheckValid(const char* op_result, const char* path,
|
||||||
bool error_aborts)
|
bool error_aborts)
|
||||||
{
|
{
|
||||||
if ( result )
|
if ( op_result )
|
||||||
{
|
{
|
||||||
result = result;
|
result = op_result;
|
||||||
error = false;
|
error = false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue