diff options
author | John Crispin <blogic@openwrt.org> | 2013-11-26 07:50:05 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-11-26 07:50:05 +0000 |
commit | 97bbd3cb759527dc9162f141419c965c1d89ee82 (patch) | |
tree | 5cb2129e85b9ee401bda7a1dbb3a819db03f2701 /package/system/ubox | |
parent | 4d6e9371a3e0a99065e841283147097047b90af7 (diff) | |
download | master-187ad058-97bbd3cb759527dc9162f141419c965c1d89ee82.tar.gz master-187ad058-97bbd3cb759527dc9162f141419c965c1d89ee82.tar.bz2 master-187ad058-97bbd3cb759527dc9162f141419c965c1d89ee82.zip |
ubox: the validation code has problems with the "(" char. use string for now
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38916 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/system/ubox')
-rw-r--r-- | package/system/ubox/files/log.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/ubox/files/log.init b/package/system/ubox/files/log.init index 1c288a7a08..c1719421f1 100644 --- a/package/system/ubox/files/log.init +++ b/package/system/ubox/files/log.init @@ -15,7 +15,7 @@ validate_log_section() 'log_size:uinteger' \ 'log_ip:ipaddr' \ 'log_port:port:514' \ - 'log_proto:or("tcp", "udp"):udp' \ + 'log_proto:string:udp' \ 'log_prefix:string' return $? } |