change order of arguments for consistency
authorJohn Kohl <jtkohl@mit.edu>
Thu, 8 Feb 1990 12:58:45 +0000 (12:58 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Thu, 8 Feb 1990 12:58:45 +0000 (12:58 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@329 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kdb/encrypt_key.c

index e82a87ccbf8bb7c5a685f6d9f213b574c1b8292d..98a11e910f6d5cd5e6580858efedeab12c85bd63 100644 (file)
@@ -28,10 +28,10 @@ static char rcsid_encrypt_key_c [] =
  */
 
 krb5_error_code
-krb5_kdb_encrypt_key(in, out, eblock)
+krb5_kdb_encrypt_key(eblock, in, out)
+krb5_encrypt_block *eblock;
 krb5_keyblock *in;
 krb5_keyblock *out;
-krb5_encrypt_block *eblock;
 {
     /* encrypted rep has a length encrypted along with the key,
        so that we win if the keysize != blocksize.