aboutsummaryrefslogtreecommitdiff
path: root/src/tool_cfgable.h
diff options
context:
space:
mode:
authorTatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>2012-05-26 22:51:03 +0900
committerDaniel Stenberg <daniel@haxx.se>2012-05-26 23:12:09 +0200
commit1bfd750f3f9e173ce5a6735756106cf6a1804960 (patch)
tree35251f9f29750ebef094ccf30b413eaa1a1ca918 /src/tool_cfgable.h
parent7bdb9fba952ea24390b903478aedb5e1615ae2d4 (diff)
Reduced #ifdef HAVE_METALINK
Diffstat (limited to 'src/tool_cfgable.h')
-rw-r--r--src/tool_cfgable.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/tool_cfgable.h b/src/tool_cfgable.h
index 72f6cef30..2183c04df 100644
--- a/src/tool_cfgable.h
+++ b/src/tool_cfgable.h
@@ -25,9 +25,7 @@
#include "tool_sdecls.h"
-#ifdef HAVE_LIBMETALINK
#include "tool_metalink.h"
-#endif /* HAVE_LIBMETALINK */
struct Configurable {
CURL *easy; /* once we have one, we keep it here */
@@ -202,10 +200,9 @@ struct Configurable {
bool xattr; /* store metadata in extended attributes */
long gssapi_delegation;
bool ssl_allow_beast; /* allow this SSL vulnerability */
-#ifdef HAVE_LIBMETALINK
+
metalinkfile *metalinkfile_list; /* point to the first node */
metalinkfile *metalinkfile_last; /* point to the last/current node */
-#endif /* HAVE_LIBMETALINK */
}; /* struct Configurable */
void free_config_fields(struct Configurable *config);