Author: blogic Date: 2014-07-02 14:56:20 +0200 (Wed, 02 Jul 2014) New Revision: 41467
Modified: trunk/package/system/ubox/files/log.init Log: ubox: fix remote logging in r41439 a flag for enabling remote logging was added, but the actual check was done on a different variable. Signed-off-by: Reiner Herrmann <[email protected]> Modified: trunk/package/system/ubox/files/log.init =================================================================== --- trunk/package/system/ubox/files/log.init 2014-07-02 12:45:00 UTC (rev 41466) +++ trunk/package/system/ubox/files/log.init 2014-07-02 12:56:20 UTC (rev 41467) @@ -71,7 +71,7 @@ echo "validation failed" return 1 } - [ "${log_enable}" -ne 0 ] || return + [ "${log_remote}" -ne 0 ] || return [ -z "${log_ip}" ] && return procd_open_instance _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
