diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-12-18 15:38:28 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-12-18 15:38:28 +0000 |
commit | d2908ef8883da1c4bcb9f7e682d689c9dd18fae6 (patch) | |
tree | aeea391bb903318a1db54e004da1cdf8f5e89cfd /package/system | |
parent | afc8adc5cb7bd6a4f8af70ad605d608ae6164e9f (diff) | |
download | upstream-d2908ef8883da1c4bcb9f7e682d689c9dd18fae6.tar.gz upstream-d2908ef8883da1c4bcb9f7e682d689c9dd18fae6.tar.bz2 upstream-d2908ef8883da1c4bcb9f7e682d689c9dd18fae6.zip |
procd: fix service file tracking
The instance_config_move() function in the procd instance managing code is
missing a blobmsg_list_move() call to update the tracked file items with the
newly calculated checksums in case of a file change.
Without that change, services are always reloaded after the first change to
a tracked file regardless of whether there are any subsequent changes or not.
Add a missing instance of blobmsg_list_free() as well.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39132 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/system')
-rw-r--r-- | package/system/procd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/system/procd/Makefile b/package/system/procd/Makefile index 932e991052..33ba8d1ef8 100644 --- a/package/system/procd/Makefile +++ b/package/system/procd/Makefile @@ -1,14 +1,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=procd -PKG_VERSION:=2013-12-09 +PKG_VERSION:=2013-12-18 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/luci2/procd.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=b76325945d31280b2ffecf898bfc62aa5f3d22d4 +PKG_SOURCE_VERSION:=2dc572df0e3002263c0a49ebbc329ed1b6c42a01 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz CMAKE_INSTALL:=1 |