diff options
| author | Tom Yu <tlyu@mit.edu> | 2000-01-24 19:50:27 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 2000-01-24 19:50:27 +0000 |
| commit | a292ad305e2cff554e4cb34186d704e175e03ee0 (patch) | |
| tree | 4bcdb9d6456a804c114cb7ffd9516dac92b9db9e /src/lib/crypto/crypto_libinit.c | |
| parent | aa471f19964c71c00942e2339f14b4ae4989b9f2 (diff) | |
| download | krb5-a292ad305e2cff554e4cb34186d704e175e03ee0.tar.gz krb5-a292ad305e2cff554e4cb34186d704e175e03ee0.tar.xz krb5-a292ad305e2cff554e4cb34186d704e175e03ee0.zip | |
* crypto_libinit.c: Add terminating newline; use 0 and 1 instead
of false and true.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11962 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/crypto_libinit.c')
| -rw-r--r-- | src/lib/crypto/crypto_libinit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/crypto/crypto_libinit.c b/src/lib/crypto/crypto_libinit.c index 5ae277e9e..a4358d0d6 100644 --- a/src/lib/crypto/crypto_libinit.c +++ b/src/lib/crypto/crypto_libinit.c @@ -1,6 +1,6 @@ #include <assert.h> -static int initialized = false; +static int initialized = 0; /* * Initialize the crypto library. @@ -10,7 +10,7 @@ int cryptoint_initialize_library (void) { if (!initialized) { - initialized = true; + initialized = 1; } return 0; @@ -26,5 +26,5 @@ void cryptoint_cleanup_library (void) prng_cleanup (); - initialized = false; -}
\ No newline at end of file + initialized = 0; +} |
