amend for new option of usedns=raw - forgotten validation fix inside setUseDns

This commit is contained in:
sebres 2016-05-31 17:45:44 +02:00
parent 8ec4e1189e
commit b3bb8b20bf

View file

@ -168,7 +168,7 @@ class Filter(JailThread):
if isinstance(value, bool):
value = {True: 'yes', False: 'no'}[value]
value = value.lower() # must be a string by now
if not (value in ('yes', 'no', 'warn')):
if not (value in ('yes', 'warn', 'no', 'raw')):
logSys.error("Incorrect value %r specified for usedns. "
"Using safe 'no'" % (value,))
value = 'no'