diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-24 11:30:45 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-24 11:30:45 +0000 |
commit | 639f388fc2499726b8ccb03bb4aa71c8fc4ed536 (patch) | |
tree | 5159ee63c4ee01c91e44b576c2de735b8074658a /package/network/services/ppp/Makefile | |
parent | c71cf8e6e4bbc2b39a061eff8d89f24dc078b1f2 (diff) | |
download | mtk-20170518-639f388fc2499726b8ccb03bb4aa71c8fc4ed536.zip mtk-20170518-639f388fc2499726b8ccb03bb4aa71c8fc4ed536.tar.gz mtk-20170518-639f388fc2499726b8ccb03bb4aa71c8fc4ed536.tar.bz2 |
ppp: rework host-uniq support to take hex encoded strings
The previous implementation of the "host-uniq" option used plain strings for
passing the value to pppd which made it impossible to specify binary data.
Switch the format to a hex encoded string to support binary data.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 44094
Diffstat (limited to 'package/network/services/ppp/Makefile')
-rw-r--r-- | package/network/services/ppp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/network/services/ppp/Makefile b/package/network/services/ppp/Makefile index efb0a76..e9b806d 100644 --- a/package/network/services/ppp/Makefile +++ b/package/network/services/ppp/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2014 OpenWrt.org +# Copyright (C) 2006-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=ppp PKG_VERSION:=2.4.7 -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/ |