File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed
Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
88
99PKG_NAME: =ddns-scripts
1010PKG_VERSION: =2.8.2
11- PKG_RELEASE: =58
11+ PKG_RELEASE: =59
1212
1313PKG_LICENSE: =GPL-2.0
1414
Original file line number Diff line number Diff line change @@ -96,8 +96,8 @@ __PRGBASE="$CURL -RsS -o $DATFILE --stderr $ERRFILE"
9696# force network/interface-device to use for communication
9797if [ -n " $bind_network " ]; then
9898 local __DEVICE
99- network_get_physdev __DEVICE $bind_network || \
100- write_log 13 " Can not detect local device using 'network_get_physdev $bind_network ' - Error: '$? '"
99+ network_get_device __DEVICE $bind_network || \
100+ write_log 13 " Can not detect local device using 'network_get_device $bind_network ' - Error: '$? '"
101101 write_log 7 " Force communication via device '$__DEVICE '"
102102 __PRGBASE=" $__PRGBASE --interface $__DEVICE "
103103fi
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ build_command() {
2828 # bind host/IP
2929 if [ -n " $bind_network " ]; then
3030 local __DEVICE
31- network_get_physdev __DEVICE $bind_network || write_log 13 " Can not detect local device using 'network_get_physdev $bind_network ' - Error: '$? '"
31+ network_get_device __DEVICE $bind_network || write_log 13 " Can not detect local device using 'network_get_device $bind_network ' - Error: '$? '"
3232 write_log 7 " Force communication via device '$__DEVICE '"
3333 __CMDBASE=" $__CMDBASE --interface $__DEVICE "
3434 fi
Original file line number Diff line number Diff line change @@ -120,8 +120,8 @@ tencentcloud_transfer() {
120120# force network/interface-device to use for communication
121121if [ -n " $bind_network " ]; then
122122 local __DEVICE
123- network_get_physdev __DEVICE $bind_network ||
124- write_log 13 " Can not detect local device using 'network_get_physdev $bind_network ' - Error: '$? '"
123+ network_get_device __DEVICE $bind_network ||
124+ write_log 13 " Can not detect local device using 'network_get_device $bind_network ' - Error: '$? '"
125125 write_log 7 " Force communication via device '$__DEVICE '"
126126 __PRGBASE=" $__PRGBASE --interface $__DEVICE "
127127fi
Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ __PRGBASE="$CURL -RsS -w '%{http_code}' -o $DATFILE --stderr $ERRFILE"
9393# force network/interface-device to use for communication
9494if [ -n " $bind_network " ]; then
9595 local __DEVICE
96- network_get_physdev __DEVICE $bind_network || \
97- write_log 13 " Can not detect local device using 'network_get_physdev $bind_network ' - Error: '$? '"
96+ network_get_device __DEVICE $bind_network || \
97+ write_log 13 " Can not detect local device using 'network_get_device $bind_network ' - Error: '$? '"
9898 write_log 7 " Force communication via device '$__DEVICE '"
9999 __PRGBASE=" $__PRGBASE --interface $__DEVICE "
100100fi
Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ __PRGBASE="$CURL -RsS -w '%{http_code}' -o $DATFILE --stderr $ERRFILE"
7676# force network/interface-device to use for communication
7777if [ -n " $bind_network " ]; then
7878 local __DEVICE
79- network_get_physdev __DEVICE $bind_network || \
80- write_log 13 " Can not detect local device using 'network_get_physdev $bind_network ' - Error: '$? '"
79+ network_get_device __DEVICE $bind_network || \
80+ write_log 13 " Can not detect local device using 'network_get_device $bind_network ' - Error: '$? '"
8181 write_log 7 " Force communication via device '$__DEVICE '"
8282 __PRGBASE=" $__PRGBASE --interface $__DEVICE "
8383fi
You can’t perform that action at this time.
0 commit comments