fix mis-spelling of MAX_TIMEOUT
authorJohn Kohl <jtkohl@mit.edu>
Fri, 30 Mar 1990 16:26:34 +0000 (16:26 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Fri, 30 Mar 1990 16:26:34 +0000 (16:26 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@443 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/os/sendto_kdc.c

index be74b8a39a9a7237047998477776586ae1e909a5..cb2842138aa2326676172b0cf95e12e6a04f5595 100644 (file)
@@ -32,6 +32,7 @@ static char rcsid_sendto_kdc_c[] =
 
 #include <stdio.h>
 #include <krb5/libos-proto.h>
+#include "os-proto.h"
 
 /*
  * send the formatted request 'message' to a KDC for realm 'realm' and
@@ -85,7 +86,7 @@ OLDDECLARG(krb5_data *, reply)
      * do exponential backoff.
      */
 
-    for (timeout = 1; timeout < MAXTIMEOUT; timeout <<=TIMEOUT_SHIFT) {
+    for (timeout = 1; timeout < MAX_TIMEOUT; timeout <<=TIMEOUT_SHIFT) {
        sent = 0;
        for (host = 0; host < naddr; host++) {
            /* send to the host, wait timeout seconds for a response,