diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-05-07 15:47:00 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-05-31 17:39:04 +0200 |
commit | 79d5c4f06b8d086d65cec30347560880815fa933 (patch) | |
tree | 6bebc2c1a0a56778b2686c9cc58d728464db8c87 /scripts | |
parent | 060b508e0e24425b9bba8d2cda1e672e636f3262 (diff) | |
download | strongswan-79d5c4f06b8d086d65cec30347560880815fa933.tar.bz2 strongswan-79d5c4f06b8d086d65cec30347560880815fa933.tar.xz |
Fixed return values of several functions (e.g. return FALSE for pointer types).
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/crypt_burn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/crypt_burn.c b/scripts/crypt_burn.c index 25f18d47e..5c41b191b 100644 --- a/scripts/crypt_burn.c +++ b/scripts/crypt_burn.c @@ -65,7 +65,7 @@ int main(int argc, char *argv[]) chunk_create(iv, aead->get_iv_size(aead)), NULL)) { fprintf(stderr, "aead integrity check failed!\n"); - return FALSE; + return 1; } if (limit && ++i == limit) { |