* krb5.hin: Get rid of extraneous krb5_const before integer
authorEzra Peisach <epeisach@mit.edu>
Thu, 7 Jun 2001 22:36:55 +0000 (22:36 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 7 Jun 2001 22:36:55 +0000 (22:36 +0000)
arguments in prototypes for valid_enctype(), valid_cksumtype(),
is_coll_proof_cksum(), is_keyed_cksum(), krb5_encrypt_size(),
krb5_checksum_size(), krb5_verify_checksum() so they match the
existing code.

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

src/include/ChangeLog
src/include/krb5.hin

index 18aff0720c197da4ad13c9b8a94359b7c114dd60..28de33bfa440a7139db354978ffb49dde2ae68a0 100644 (file)
@@ -1,3 +1,11 @@
+2001-06-07  Ezra Peisach  <epeisach@mit.edu>
+
+       * krb5.hin: Get rid of extraneous krb5_const before integer
+       arguments in prototypes for valid_enctype(), valid_cksumtype(),
+       is_coll_proof_cksum(), is_keyed_cksum(), krb5_encrypt_size(),
+       krb5_checksum_size(), krb5_verify_checksum() so they match the
+       existing code.
+
 2001-06-07  Ezra Peisach  <epeisach@mit.edu>
 
        * k5-int.h: Remove AS_REP_105_SAM_COMPAT definition. Not used in
index 82fca7359642bfad751588a90b95d3b23d2a0c7c..9545a9e9cc215b1faa3074ac002a34549a80258e 100644 (file)
@@ -472,13 +472,13 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
 
 
 KRB5_DLLIMP krb5_boolean KRB5_CALLCONV valid_enctype
-       (krb5_const krb5_enctype ktype);
+       (krb5_enctype ktype);
 KRB5_DLLIMP krb5_boolean KRB5_CALLCONV valid_cksumtype
-       (krb5_const krb5_cksumtype ctype);
+       (krb5_cksumtype ctype);
 KRB5_DLLIMP krb5_boolean KRB5_CALLCONV is_coll_proof_cksum
-       (krb5_const krb5_cksumtype ctype);
+       (krb5_cksumtype ctype);
 KRB5_DLLIMP krb5_boolean KRB5_CALLCONV is_keyed_cksum
-       (krb5_const krb5_cksumtype ctype);
+       (krb5_cksumtype ctype);
 
 #ifdef KRB5_OLD_CRYPTO
 /*
@@ -534,11 +534,11 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_use_enctype
                krb5_encrypt_block FAR * eblock,
                krb5_const krb5_enctype enctype);
 KRB5_DLLIMP size_t KRB5_CALLCONV krb5_encrypt_size
-       (krb5_const size_t length,
+       (size_t length,
                krb5_enctype crypto);
 KRB5_DLLIMP size_t KRB5_CALLCONV krb5_checksum_size
        (krb5_context context,
-               krb5_const krb5_cksumtype ctype);
+               krb5_cksumtype ctype);
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_calculate_checksum
        (krb5_context context,
                krb5_const krb5_cksumtype ctype,
@@ -547,7 +547,7 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_calculate_checksum
                krb5_checksum FAR * outcksum);
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_verify_checksum
        (krb5_context context,
-               krb5_const krb5_cksumtype ctype,
+               krb5_cksumtype ctype,
                krb5_const krb5_checksum FAR * cksum,
                krb5_const krb5_pointer in, krb5_const size_t in_length,
                krb5_const krb5_pointer seed, krb5_const size_t seed_length);