* kerberos_v4.c: Get rid of file wide static krb5_error_code. Cast
authorEzra Peisach <epeisach@mit.edu>
Thu, 7 Jun 2001 21:59:55 +0000 (21:59 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 7 Jun 2001 21:59:55 +0000 (21:59 +0000)
argument to sleep to unsigned int.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13300 dc483132-0cff-0310-8789-dd5450dbe970

src/kdc/ChangeLog
src/kdc/kerberos_v4.c

index 595c844445b4924dbfacd68174a2910f9e4ca8ce..7cd5ad4352c1a182b9b2ba8fadac2d5a5f43fb52 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-07  Ezra Peisach  <epeisach@mit.edu>
+
+       * kerberos_v4.c: Get rid of file wide static krb5_error_code. Cast
+       argument to sleep to unsigned int.
+
 2001-06-04  Ezra Peisach  <epeisach@mit.edu>
 
        * kdc_util.c (add_to_transited): Add braces to provide unambiguous
index bf9a996ad7938ddaac53d6f7f048a01f78c9f39a..caf07fba0e92f991b17192be7878d969f89710c8 100644 (file)
@@ -142,7 +142,6 @@ static void hang();
 #include "com_err.h"
 #include "extern.h"            /* to pick up master_princ */
 
-static krb5_error_code retval; 
 static krb5_data *response;
 
 void kerberos_v4 (struct sockaddr_in *, KTEXT);
@@ -331,7 +330,7 @@ hang()
           "Kerberos will wait %d seconds before dying so as not to loop init",
                (int) pause_int);
         klog(L_KRB_PERR, buf);
-        sleep(pause_int);
+        sleep((unsigned) pause_int);
         klog(L_KRB_PERR, "Do svedania....\n");
      /* exit(1); */
     }
@@ -424,6 +423,7 @@ kerb_get_principal(name, inst, principal, maxn, more, k5key, kvno,
     char* text;
     struct tm *tp;
     krb5_key_data *pkey;
+    krb5_error_code retval;
 
     *more = 0;
     if ( maxn > 1) {