Removed unnecessary comma in stf addr printf in hex format,

which I mysteriously added.

Submitted by: ume
This commit is contained in:
Yoshinobu Inoue 2000-04-06 00:24:52 +00:00
parent 76f62d0c9d
commit 808a8f89a1
2 changed files with 2 additions and 2 deletions

View File

@ -263,7 +263,7 @@ network6_stf_setup() {
IFS=".$IFS"
set ${stf_interface_ipv4addr}
IFS="$OIFS"
ipv4_in_hexformat=`printf "%x:%x\n", \
ipv4_in_hexformat=`printf "%x:%x\n" \
$(($1*256 + $2)) $(($3*256 + $4))`
case ${stf_interface_ipv6_ifid} in
[Aa][Uu][Tt][Oo] | '')

View File

@ -263,7 +263,7 @@ network6_stf_setup() {
IFS=".$IFS"
set ${stf_interface_ipv4addr}
IFS="$OIFS"
ipv4_in_hexformat=`printf "%x:%x\n", \
ipv4_in_hexformat=`printf "%x:%x\n" \
$(($1*256 + $2)) $(($3*256 + $4))`
case ${stf_interface_ipv6_ifid} in
[Aa][Uu][Tt][Oo] | '')