summaryrefslogtreecommitdiff
path: root/server/bdump.c
diff options
context:
space:
mode:
authorGravatar Greg Hudson <ghudson@mit.edu>1998-11-19 16:39:51 +0000
committerGravatar Greg Hudson <ghudson@mit.edu>1998-11-19 16:39:51 +0000
commit33302ff8754ee9f36d8b64fe74b9ab1e1d56d4a8 (patch)
tree9fa6e613544926624c024f6f06339448acc33652 /server/bdump.c
parent0b4463215d026d9034b338396415b9d215a61efc (diff)
Revert version 1.50. Empirically, this workaround didn't seem to help
(I'm not sure why, but it still took ten hours for erato to recover from having an invalid tgt), and we now understand what the problem is (the KDC is handing out identical answers for requests from two different clients; obviously, one of them gets an incorrect address).
Diffstat (limited to 'server/bdump.c')
-rw-r--r--server/bdump.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/server/bdump.c b/server/bdump.c
index 305e338..5697ab5 100644
--- a/server/bdump.c
+++ b/server/bdump.c
@@ -303,15 +303,6 @@ bdump_send()
syslog(LOG_ERR,"bdump_send: SendKerberosData: %s",
error_message (retval));
cleanup(server);
-
- /* XXX For unknown reasons, sometimes we get a TGT which
- * produces this error while trying to get a service ticket.
- * This workaround forces us to get a new TGT next time
- * around.
- */
- if (retval == RD_AP_BADD)
- ticket_time = 0;
-
return;
}
#else /* !HAVE_KRB4 */
@@ -471,15 +462,6 @@ bdump_get_v12 (notice, auth, who, server)
if (retval != 0) {
syslog(LOG_ERR,"bdump_get: %s", error_message(retval));
cleanup(server);
-
- /* XXX For unknown reasons, sometimes we get a TGT which
- * produces this error while trying to get a service ticket.
- * This workaround forces us to get a new TGT next time
- * around.
- */
- if (retval == RD_AP_BADD)
- ticket_time = 0;
-
return;
}
#if 1