summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto/crc32
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2007-02-19 02:37:10 +0000
committerEzra Peisach <epeisach@mit.edu>2007-02-19 02:37:10 +0000
commita34576395e2c009c6ae9902cbdcf6acb84b20079 (patch)
tree4a1f2e9448e613ef07a7efe3c1fa1ae9732b773f /src/lib/crypto/crc32
parent8d0dad364ce72219ee86c912746d9930602c9475 (diff)
downloadkrb5-a34576395e2c009c6ae9902cbdcf6acb84b20079.tar.gz
krb5-a34576395e2c009c6ae9902cbdcf6acb84b20079.tar.xz
krb5-a34576395e2c009c6ae9902cbdcf6acb84b20079.zip
Ensure consistancy between prototypes and functions
I am using an older compiler that is complaining that prototypes do not match the functions they reference. The issue is that a number of prototypes are using "const int foo" while the function is "int foo". From a caller sense it makes no difference - but the compiler is correct they are different. All is now consistant. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19169 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/crc32')
-rw-r--r--src/lib/crypto/crc32/crc-32.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/crypto/crc32/crc-32.h b/src/lib/crypto/crc32/crc-32.h
index 10facaa58..0efc00625 100644
--- a/src/lib/crypto/crc32/crc-32.h
+++ b/src/lib/crypto/crc32/crc-32.h
@@ -60,11 +60,11 @@
#define CRC32_CKSUM_LENGTH 4
void
-mit_crc32 (const krb5_pointer in, size_t in_length, unsigned long *c);
+mit_crc32 (krb5_pointer in, size_t in_length, unsigned long *c);
#ifdef CRC32_SHIFT4
-void mit_crc32_shift4(const krb5_pointer /* in */,
- const size_t /* in_length */,
+void mit_crc32_shift4(krb5_pointer /* in */,
+ size_t /* in_length */,
unsigned long * /* cksum */);
#endif