aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-08-23 16:16:42 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-08-25 19:16:36 +0200
commitbb5529331334e1e1c79ff3320220bba12fc8457d (patch)
tree65a79458b8b78bf3729f44ae754605ed5ed51ec0 /lib/url.c
parent817ceb09e0a8f0754e81ccc592ad919125bc7908 (diff)
FTP: remove krb4 support
We've announced this pending removal for a long time and we've repeatedly asked if anyone would care or if anyone objects. Nobody has objected. It has probably not even been working for a good while since nobody has tested/used this code recently. The stuff in krb4.h that was generic enough to be used by other sources is now present in security.h
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 657681dd6..5057018c5 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -3607,7 +3607,7 @@ static struct connectdata *allocate_conn(struct SessionHandle *data)
if(!conn->send_pipe || !conn->recv_pipe)
goto error;
-#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
+#ifdef HAVE_GSSAPI
conn->data_prot = PROT_CLEAR;
#endif