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

pull/1205/merge
sebres 2016-05-31 17:45:44 +02:00
parent 8ec4e1189e
commit b3bb8b20bf
1 changed files with 1 additions and 1 deletions

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'