forked from extern/shorewall_code
Fix find_first_interface_address()
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
c9449f9ad4
commit
96fa1f3494
@ -435,7 +435,11 @@ find_first_interface_address() # $1 = interface
|
||||
#
|
||||
# If there wasn't one, bail out now
|
||||
#
|
||||
[ -n "$addr" ] || startup_error "Can't determine the IP address of $1"
|
||||
if [ -z "$addr" ]; then
|
||||
echo " ERROR: Can't determine the IP address of $1" >&2
|
||||
kill $$
|
||||
exit 1
|
||||
fi
|
||||
#
|
||||
# Strip off the trailing VLSM mask (or the peer IP in case of a P-t-P link)
|
||||
# along with everything else on the line
|
||||
|
Loading…
Reference in New Issue
Block a user