From b9df33bc023cf5dcd66945b7241b33c14e751401 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Thu, 31 Mar 2016 17:17:39 +0200 Subject: [PATCH] Fix the values of the SC flags to have successive powers of 2 --- include/yaws.hrl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/yaws.hrl b/include/yaws.hrl index 7f52cd0bd..d7fc4e453 100644 --- a/include/yaws.hrl +++ b/include/yaws.hrl @@ -165,11 +165,11 @@ -define(SC_DIR_LISTINGS, 32). -define(SC_DEFLATE, 64). -define(SC_DIR_ALL_ZIP, 128). --define(SC_DAV, 512). --define(SC_FCGI_TRACE_PROTOCOL, 1024). --define(SC_FCGI_LOG_APP_ERROR, 2048). --define(SC_FORWARD_PROXY, 4096). --define(SC_AUTH_SKIP_DOCROOT, 8192). +-define(SC_DAV, 256). +-define(SC_FCGI_TRACE_PROTOCOL, 512). +-define(SC_FCGI_LOG_APP_ERROR, 1024). +-define(SC_FORWARD_PROXY, 2048). +-define(SC_AUTH_SKIP_DOCROOT, 4096).