Skip to content

Commit

Permalink
0.1.2-7
Browse files Browse the repository at this point in the history
  • Loading branch information
muink committed Aug 6, 2024
1 parent 0e9c5b6 commit c343182
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=einat-ebpf
PKG_VERSION:=0.1.2
PKG_RELEASE:=6
PKG_RELEASE:=7

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/EHfive/einat-ebpf/tar.gz/refs/tags/v$(PKG_VERSION)?
Expand Down
3 changes: 2 additions & 1 deletion files/einat.init
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ launcher() {
10) network_get_device wanifname "$DEF_WAN6";;
11) network_get_device wanifname "$DEF_WAN6";;
esac
[ -z "${ifname:=$wanifname}" ] && >&2 echo "$(basename $0): section $1 option ifname parsing failed, there may be no network connection" && let error++
local ifname="${ifname:-$wanifname}"
[ -z "$ifname" ] && >&2 echo "$(basename $0): section $1 option ifname parsing failed, there may be no network connection" && let error++

# review
[ -n "$EINAT_DEBUG" ] && {
Expand Down

0 comments on commit c343182

Please sign in to comment.