aboutsummaryrefslogtreecommitdiff
path: root/src/tool_cfgable.h
diff options
context:
space:
mode:
authorTatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>2012-05-25 19:24:32 +0900
committerDaniel Stenberg <daniel@haxx.se>2012-05-26 23:11:52 +0200
commit6a655ca192b65702f6c28b33e606fd4d6aec723f (patch)
tree5be5c0c9641d092513908d25654f48fb99a92bbc /src/tool_cfgable.h
parent9f7f7925da648b3b39714e6c9fd65500a869bdfe (diff)
Minimize usage of structs from libmetalink
Diffstat (limited to 'src/tool_cfgable.h')
-rw-r--r--src/tool_cfgable.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/tool_cfgable.h b/src/tool_cfgable.h
index a221e3792..72f6cef30 100644
--- a/src/tool_cfgable.h
+++ b/src/tool_cfgable.h
@@ -203,11 +203,8 @@ struct Configurable {
long gssapi_delegation;
bool ssl_allow_beast; /* allow this SSL vulnerability */
#ifdef HAVE_LIBMETALINK
- struct metalinkfile *metalinkfile_list; /* point to the first node */
- struct metalinkfile *metalinkfile_last; /* point to the last/current node */
-
- struct metalink *metalink_list; /* point to the first node */
- struct metalink *metalink_last; /* point to the last/current node */
+ metalinkfile *metalinkfile_list; /* point to the first node */
+ metalinkfile *metalinkfile_last; /* point to the last/current node */
#endif /* HAVE_LIBMETALINK */
}; /* struct Configurable */