aboutsummaryrefslogtreecommitdiff
path: root/src/tool_cfgable.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-04-18 23:04:35 +0200
committerYang Tse <yangsita@gmail.com>2012-04-18 23:04:35 +0200
commit9421b06397d25426ab013e2b90d4604ed6430926 (patch)
treea68eb6cedecc10d15fa98340130dee605947e4e1 /src/tool_cfgable.h
parent09690be8decdde2d8cb7c7a41d1d11021ec49c96 (diff)
Take in account that CURLAUTH_* bitmasks are now 'unsigned long'
Data type of internal vars holding CURLAUTH_* bitmasks changed from 'long' to 'unsigned long' for proper handling and operating.
Diffstat (limited to 'src/tool_cfgable.h')
-rw-r--r--src/tool_cfgable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_cfgable.h b/src/tool_cfgable.h
index 614f8b9b0..bef482282 100644
--- a/src/tool_cfgable.h
+++ b/src/tool_cfgable.h
@@ -37,7 +37,7 @@ struct Configurable {
bool cookiesession; /* new session? */
bool encoding; /* Accept-Encoding please */
bool tr_encoding; /* Transfer-Encoding please */
- long authtype; /* auth bitmask */
+ unsigned long authtype; /* auth bitmask */
bool use_resume;
bool resume_from_current;
bool disable_epsv;