diff options
author | Ken Raeburn <raeburn@mit.edu> | 2004-03-18 02:09:40 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2004-03-18 02:09:40 +0000 |
commit | c1ff6d6bfa7a79be3f46fb0e005cbcdb76684d8f (patch) | |
tree | 9a9ae41bc5731bafeffb34c33560941e552dbc40 /src/lib/crypto/crypto_libinit.c | |
parent | 15903f5c6ca3cdeea14fdf770b477dd041a0ec7a (diff) | |
download | krb5-c1ff6d6bfa7a79be3f46fb0e005cbcdb76684d8f.tar.gz krb5-c1ff6d6bfa7a79be3f46fb0e005cbcdb76684d8f.tar.xz krb5-c1ff6d6bfa7a79be3f46fb0e005cbcdb76684d8f.zip |
* prng.c (krb5int_prng_cleanup): Renamed from prng_cleanup.
* crypto_libinit.c: Include k5-int.h.
(cryptoint_cleanup_library): Updated call.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16179 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/crypto_libinit.c')
-rw-r--r-- | src/lib/crypto/crypto_libinit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/crypto/crypto_libinit.c b/src/lib/crypto/crypto_libinit.c index 48ad330d50..a799b1ec3d 100644 --- a/src/lib/crypto/crypto_libinit.c +++ b/src/lib/crypto/crypto_libinit.c @@ -1,5 +1,7 @@ #include <assert.h> #include "crypto_libinit.h" +/* get prng_cleanup decl */ +#include "k5-int.h" static int initialized = 0; @@ -27,7 +29,7 @@ void cryptoint_cleanup_library (void) { assert (initialized); - prng_cleanup (); + krb5int_prng_cleanup (); initialized = 0; } |