diff options
author | Werner Koch <[email protected]> | 2011-02-04 11:57:53 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-02-04 11:57:53 +0000 |
commit | b008274afdbe375b32a7e66dbd073e200f6f0587 (patch) | |
tree | 219e239d39cf06be3f03aa82fb572080ac163a15 /tools/no-libgcrypt.c | |
parent | Let autogen.sh check the git config (diff) | |
download | gnupg-b008274afdbe375b32a7e66dbd073e200f6f0587.tar.gz gnupg-b008274afdbe375b32a7e66dbd073e200f6f0587.zip |
Nuked almost all trailing white space.post-nuke-of-trailing-ws
We better do this once and for all instead of cluttering all future
commits with diffs of trailing white spaces. In the majority of cases
blank or single lines are affected and thus this change won't disturb
a git blame too much. For future commits the pre-commit scripts
checks that this won't happen again.
Diffstat (limited to 'tools/no-libgcrypt.c')
-rw-r--r-- | tools/no-libgcrypt.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/no-libgcrypt.c b/tools/no-libgcrypt.c index e4b304a51..496757647 100644 --- a/tools/no-libgcrypt.c +++ b/tools/no-libgcrypt.c @@ -4,7 +4,7 @@ * This file is free software; as a special exception the author gives * unlimited permission to copy and/or distribute it, with or without * modifications, as long as this notice is preserved. - * + * * This file is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY, to the extent permitted by law; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -115,28 +115,28 @@ gcry_free (void *a) /* We need this dummy because exechelp.c uses gcry_control to terminate the secure memeory. */ -gcry_error_t +gcry_error_t gcry_control (enum gcry_ctl_cmds cmd, ...) { (void)cmd; return 0; } -void +void gcry_set_outofcore_handler (gcry_handler_no_mem_t h, void *opaque) { (void)h; (void)opaque; } -void +void gcry_set_fatalerror_handler (gcry_handler_error_t fnc, void *opaque) { (void)fnc; (void)opaque; } -void +void gcry_set_log_handler (gcry_handler_log_t f, void *opaque) { (void)f; @@ -149,7 +149,7 @@ gcry_create_nonce (void *buffer, size_t length) { (void)buffer; (void)length; - + log_fatal ("unexpected call to gcry_create_nonce\n"); } |