View | Details | Raw Unified | Return to bug 268378 | Differences between
and this patch

Collapse All | Expand All

(-)/etc/network.subr 2022-12-14 12:24:00.168988000 -0500 (-7 / +4 lines)
Lines 1047-1060 Link Here
1047
               esac
1047
               esac
1048
       done
1048
       done
1049
       # Process the last component if any.
1049
       # Process the last component if any.
1050
       if [ -n "$_tmpargs}" ]; then
1050
       if [ -n "$_tmpargs" ]; then
1051
               case $_tmpargs in
1051
               if expr "$_tmpargs" : ${_af}' \{1,\}[0-9a-fA-F.:]\{1,\}-[0-9a-fA-F.:]\{1,\}/[0-9]\{1,\}' >/dev/null 2>&1; then
1052
               ${_af}\ *[0-9a-fA-F]-*)
1053
                       ifalias_af_common_handler $_if $_af $_action \
1052
                       ifalias_af_common_handler $_if $_af $_action \
1054
                       `ifalias_expand_addr $_af $_action ${_tmpargs#${_af}\ }`
1053
                       `ifalias_expand_addr $_af $_action ${_tmpargs#${_af}\ }`
1055
               ;;
1054
               elif expr "$_tmpargs" : "${_af} " >/dev/null 2>&1; then
1056
               ${_af}\ *)
1057
                       ${IFCONFIG_CMD} $_if $_tmpargs $_action && _ret=0
1055
                       ${IFCONFIG_CMD} $_if $_tmpargs $_action && _ret=0
1058
               ;;
1056
               fi
1059
               esac
1060
       fi
1057
       fi
1061
       return $_ret
1058
       return $_ret

Return to bug 268378