diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-13 14:56:35 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-13 14:56:35 +0000 |
| commit | 42bcf5967d7688def319ef0dba55a14656497c81 (patch) | |
| tree | 81bcf9f5bc92b06eec82c4bc6a6b317aac29548e /lib/python | |
| parent | b682e464035635927e72142065f0332d58ea8fcb (diff) | |
| download | enigma2-42bcf5967d7688def319ef0dba55a14656497c81.tar.gz enigma2-42bcf5967d7688def319ef0dba55a14656497c81.zip | |
allow 000 in the first byte of ip addresses
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
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)], "") |
