aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/patch-for-debugging
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-10-19 02:24:38 +0200
committerMatthias Andree <matthias.andree@gmx.de>2010-10-19 02:24:38 +0200
commitfa2ac589a4dccb25e9da1757f53e2b25d1d3e1a3 (patch)
tree50c97a55e2d7db59a1bb8b5ebe18d1dcc86d6d25 /contrib/patch-for-debugging
parent228d36d032234042457c4b5879170fa628230481 (diff)
downloadfetchmail-fa2ac589a4dccb25e9da1757f53e2b25d1d3e1a3.tar.gz
fetchmail-fa2ac589a4dccb25e9da1757f53e2b25d1d3e1a3.tar.bz2
fetchmail-fa2ac589a4dccb25e9da1757f53e2b25d1d3e1a3.zip
Drop patch-for-debugging, no longer needed.
Diffstat (limited to 'contrib/patch-for-debugging')
-rw-r--r--contrib/patch-for-debugging30
1 files changed, 0 insertions, 30 deletions
diff --git a/contrib/patch-for-debugging b/contrib/patch-for-debugging
deleted file mode 100644
index 8a2e3f56..00000000
--- a/contrib/patch-for-debugging
+++ /dev/null
@@ -1,30 +0,0 @@
-This patch removes the "skip GSSAPI if no credentials" feature, and can
-be used to assist debugging.
-
-diff --git a/imap.c b/imap.c
-index d641586..575573f 100644
---- a/imap.c
-+++ b/imap.c
-@@ -566,7 +566,7 @@ static int imap_getauth(int sock, struct query *ctl, char *greeting)
- }
-
- #ifdef GSSAPI
-- if (((ctl->server.authenticate == A_ANY && check_gss_creds("imap", ctl->server.truename) == PS_SUCCESS)
-+ if (((ctl->server.authenticate == A_ANY)
- || ctl->server.authenticate == A_GSSAPI)
- && strstr(capabilities, "AUTH=GSSAPI"))
- {
-diff --git a/pop3.c b/pop3.c
-index f5e727c..bbefaf0 100644
---- a/pop3.c
-+++ b/pop3.c
-@@ -565,8 +565,7 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting)
- #if defined(GSSAPI)
- if (has_gssapi &&
- (ctl->server.authenticate == A_GSSAPI ||
-- (ctl->server.authenticate == A_ANY
-- && check_gss_creds("pop", ctl->server.truename) == PS_SUCCESS)))
-+ (ctl->server.authenticate == A_ANY)))
- {
- ok = do_gssauth(sock,"AUTH","pop",ctl->server.truename,ctl->remotename);
- if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)