diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-04-12 15:06:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-04-12 15:06:44 +0000 |
commit | ca556ac7b3f9f2c0ec9bb960e0419206fd899a03 (patch) | |
tree | 8f234e448521b028a20fb4095c2c6a5a61577841 /imap.c | |
parent | 08d5ea06fdf309809a47cbc971eeffcf5ada98b9 (diff) | |
download | fetchmail-ca556ac7b3f9f2c0ec9bb960e0419206fd899a03.tar.gz fetchmail-ca556ac7b3f9f2c0ec9bb960e0419206fd899a03.tar.bz2 fetchmail-ca556ac7b3f9f2c0ec9bb960e0419206fd899a03.zip |
Minor updates.
svn path=/trunk/; revision=2872
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -323,12 +323,18 @@ static int do_rfc1731(int sock, char *truename) return PS_AUTHFAIL; } +#ifdef __UNUSED__ + /* + * Andrew H. Chatham <andrew.chatham@duke.edu> alleges that this check + * is not necessary and has consistently been messing him up. + */ if (strcmp(tktuser, user) != 0) { report(stderr, _("principal %s in ticket does not match -u %s\n"), tktuser, user); return PS_AUTHFAIL; } +#endif /* __UNUSED__ */ if (tktinst[0]) { report(stderr, |