mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Use = rather than == for expressions to test(1) builtin(1) in sh(1) to
comply with standards. On modern branches there is an undocumented alias (see r219084) but on stable/7 this is still an error. Sponsored by: Cisco Systems, Inc. MFC after: 3 days
This commit is contained in:
parent
811772950f
commit
2460e894e3
1 changed files with 1 additions and 1 deletions
|
|
@ -410,7 +410,7 @@ testtx_ulp6_connected()
|
|||
*) _f="SETFIB" ;;
|
||||
esac
|
||||
|
||||
if test "${_o}" == "-i" -a "${_f}" == "SO_SETFIB"; then
|
||||
if test "${_o}" = "-i" -a "${_f}" = "SO_SETFIB"; then
|
||||
print_debug "Skipping icmp6 tests for SO_SETFIB."
|
||||
return 0
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue