From: Stefan Pluecken Date: Tue, 13 Dec 2005 14:56:35 +0000 (+0000) Subject: allow 000 in the first byte of ip addresses X-Git-Tag: 2.6.0~4719 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/42bcf5967d7688def319ef0dba55a14656497c81?ds=inline allow 000 in the first byte of ip addresses --- diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index a2dfb8db..3bbdde10 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -148,7 +148,7 @@ class configSequenceArg: def get(self, type, args = ()): # configsequencearg.get ("IP") if (type == "IP"): - return (("."), [(1,255),(0,255),(0,255),(0,255)], "") + return (("."), [(0,255),(0,255),(0,255),(0,255)], "") # configsequencearg.get ("MAC") if (type == "MAC"): return ((":"), [(1,255),(1,255),(1,255),(1,255),(1,255),(1,255)], "")