svn rev #22366: trunk/src/lib/crypto/

raeburn@MIT.EDU raeburn at MIT.EDU
Fri May 22 13:31:09 EDT 2009


http://src.mit.edu/fisheye/changelog/krb5/?cs=22366
Commit By: raeburn
Log Message:
whitespace


Changed Files:
U   trunk/src/lib/crypto/prf.c
Modified: trunk/src/lib/crypto/prf.c
===================================================================
--- trunk/src/lib/crypto/prf.c	2009-05-22 17:22:07 UTC (rev 22365)
+++ trunk/src/lib/crypto/prf.c	2009-05-22 17:31:09 UTC (rev 22366)
@@ -58,7 +58,7 @@
 
 krb5_error_code KRB5_CALLCONV
 krb5_c_prf(krb5_context context, const krb5_keyblock *key,
-krb5_data *input, krb5_data *output)
+	   krb5_data *input, krb5_data *output)
 {
     int i;
     size_t len;
@@ -78,9 +78,9 @@
     if (!krb5_enctypes_list[i].prf)
 	return (KRB5_CRYPTO_INTERNAL);
     krb5_c_prf_length (context, key->enctype, &len);
-    if( len != output->length)
+    if (len != output->length)
 	return (KRB5_CRYPTO_INTERNAL);
-            return((*(krb5_enctypes_list[i].prf))
+    return((*(krb5_enctypes_list[i].prf))
 	   (krb5_enctypes_list[i].enc, krb5_enctypes_list[i].hash,
 	    key,  input, output));
 }




More information about the cvs-krb5 mailing list